A) I can't change its colour
B) Arrows can't be removed
C) there's an artifact around it.
Any ideas for alternatives? I have a process that waits on a remote server to respond, so the time to wait is unknown, I need to let the user know it's working, and provide ability to cancel waiting...
Code: Select all
OpenWindow(0, x, y, 460, 50, "test")
ScrollBarGadget(1, 10, 10, 440, 25, 0, 100, 0)
For a = 1 To 5
For x = 1 To 100
SetGadgetState(1,x)
WaitWindowEvent(10)
Next
For x = 99 To 2 Step -1
SetGadgetState(1,x)
WaitWindowEvent(10)
Next
Next



