Click here to Skip to main content
15,899,754 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hello friends,
:) i am finding that how to add .cur file in our project i tried a lot but i couldn't get it.
if we add .cur file in this path than what happen??
==>C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplatesCache\VisualBasic\1033\cursor.zip
Posted
Comments
Henry Minute 27-Sep-10 8:35am    
Before you use the answer given by prerakpatel you will probably need to unpack the zip file that you refer to.

1 solution

Go to Project => Properties, Resource tab. Click the arrow on the "Add Resource" button, Add Existing File and select your .cur file.

And in your code, use -
VB
Dim ms As New System.IO.MemoryStream(My.Resources.Cursor1)
Button1.Cursor = New Cursor(ms)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900