B4J Question Hourglass Cursor

ValDog

Active Member
Licensed User
Longtime User
How would I go about displaying an hourglass mouse cursor when my app is busy?
 

sonicmayne

Member
Licensed User
Longtime User
To set the cursor for the mainform it's the following:
B4X:
MainForm.RootPane.MouseCursor = fx.Cursors.WAIT

If you want to set it for a certain node you can do:
B4X:
YourNodeName.MouseCursor = fx.Cursors.WAIT
 
Upvote 0
Top