Cursor wait, hide or show

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am developing a program using VB.net. It's a web based program that use web controls. When the system
display a checkboxlist, I immedately try to put up a popup screen. The problem is before the popup is complete
the user can or may try to select more that a single selection. Is there a way to hide and then show the cursor.
I tried disabling the list, still too slow. Tried wait nothing happened after the wait.
 
Hi Mikee,

You can't hide the cursor through code, but what you could try doing is
wrapping your checkboxlist in a Div with the style set to visibility=hidden.
Then, after your popup, use javascript to change the visibility to visible.
That wont take any download time, as it's already downloaded.

Alex Papadimoulis

mikee said:
I am developing a program using VB.net. It's a web based program that use web controls. When the system
display a checkboxlist, I immedately try to put up a popup screen. The
problem is before the popup is complete
the user can or may try to select more that a single selection. Is there a
way to hide and then show the cursor.
I tried disabling the list, still too slow. Tried wait nothing happened
after the wait.
 
Back
Top