HourGlass cursor Problem
-
Hello Everybody, Had Set vb-hourglass Cursor in my application.For user to wait until the process is completed.The problem is that when run the app the Cursor Some times changes to vb-hourglass and some times doesn't.I used Me.Mouse-pointer and even Screen.Mouse-pointer set to vb-hourglass. But yet the problem exist.Can anyone Provide solution to the prob and Why does it Happen? Thanks in Advance.
-
Hello Everybody, Had Set vb-hourglass Cursor in my application.For user to wait until the process is completed.The problem is that when run the app the Cursor Some times changes to vb-hourglass and some times doesn't.I used Me.Mouse-pointer and even Screen.Mouse-pointer set to vb-hourglass. But yet the problem exist.Can anyone Provide solution to the prob and Why does it Happen? Thanks in Advance.
Better use
Me.Cursor = Cursors.WaitCursor
and then laterMe.Cursor = Cursors.Default
to set it back.My advice is free, and you may get what you paid for.
-
Better use
Me.Cursor = Cursors.WaitCursor
and then laterMe.Cursor = Cursors.Default
to set it back.My advice is free, and you may get what you paid for.
Hello Johan Hakkesteegt, Thanks for your reply. But Me.Cursor=Cursors.WaitCursor this code is not supportted by Vb6.Can u Provide any other way to achieve it.
-
Hello Johan Hakkesteegt, Thanks for your reply. But Me.Cursor=Cursors.WaitCursor this code is not supportted by Vb6.Can u Provide any other way to achieve it.
I am sorry, but VB6 is not supported anymore in general. I have not used it for years. If at all possible try to use VB.NET instead.
My advice is free, and you may get what you paid for.