I have an application where i want to set a custom cursor for the life of the application instance. However, there have been several snags. first, and most importantly, i cannot seem to get this line of code to work:
cursor.current = cursors.default
nor can i get variations to work (ones that i have tried)
me.cursor.current = cursors.default
cursor = cursors.default
cursor.current = cursors.arrow
me.cursors.current = cursors.arrow
Nothing seems to work. after trying this for quite a while, i implemented a module that uses the user32 api to set the cursor to an animated cursor (ani) and then a cursor (cur) and that seems to work fine except that i do not know how to set the cursor back to the default. (since vb.net does not support ani files, i had to use the module, and found that it also works for cur files).
PLEASE PLEASE PLEASE....can anyone help me.
cursor.current = cursors.default
nor can i get variations to work (ones that i have tried)
me.cursor.current = cursors.default
cursor = cursors.default
cursor.current = cursors.arrow
me.cursors.current = cursors.arrow
Nothing seems to work. after trying this for quite a while, i implemented a module that uses the user32 api to set the cursor to an animated cursor (ani) and then a cursor (cur) and that seems to work fine except that i do not know how to set the cursor back to the default. (since vb.net does not support ani files, i had to use the module, and found that it also works for cur files).
PLEASE PLEASE PLEASE....can anyone help me.