I write some small programs in MVBA, which is Bentley's MicroStation version of VBA (AutoCad on steroids )
In my UserForm I would like to change the MousePointer to Hourglass and back to Default when I need to, so I have something like:
but when I run my app, MousePoiner does not change, it still displays just the default arrow pointer instead of hourglass
What do I need to do to have Hourglass and then back Default pointer?
Have fun.
---- Andy
A bus station is where a bus stops. A train station is where a train stops. On my desk, I have a work station.
In my UserForm I would like to change the MousePointer to Hourglass and back to Default when I need to, so I have something like:
Code:
Me.MousePointer = fmMousePointerHourGlass[green]
'... some code[/green]
Me.MousePointer = fmMousePointerDefault
but when I run my app, MousePoiner does not change, it still displays just the default arrow pointer instead of hourglass
What do I need to do to have Hourglass and then back Default pointer?
Have fun.
---- Andy
A bus station is where a bus stops. A train station is where a train stops. On my desk, I have a work station.