Customized Mouse Cursor in VB.NET
Submitted by donbermoy on Saturday, May 16, 2015 - 00:08.
This is a very simple tutorial but a very useful one that it customized the mouse cursor in your Form. Sometimes, we wanted to have good designs and one of them is creating a good cursor for your system.
Now, let's start this tutorial!
1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application.
2. Next, add only one Button named Button1 and labeled it as "Hover Mouse Here".
3. Download any cursor file with a .cur file extension. You can download it freely on the Internet.
Then add the chosen cursor file in your Resource Folder.
4. Then we will now do the coding. Have this code below:
As what you have seen from the code above, we use the My namespace with the Resources folder with the name of our cursor such as Cursor4. We named it as our variable named cr to be in the MemoryStream.
Now, after that we put it on the property of our Button as Cursor and instantiate it with the variable cr.
Download the source code and try it!
For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below.
Best Regards,
Engr. Lyndon Bermoy
IT Instructor/System Developer/Android Developer/Freelance Programmer
Mobile: 09488225971
Landline: 826-9296
E-mail:[email protected]
Add and Follow me on Facebook: https://www.facebook.com/donzzsky
Visit and like my page on Facebook at: https://www.facebook.com/BermzISware

- Public Class Form1
- Dim cr As New System.IO.MemoryStream(My.Resources.Cursor4)
- ' add .cur file in resource
- Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
- Button1.Cursor = New Cursor(cr)
- End Sub
- End Class
Add new comment
- 627 views