Click to See Complete Forum and Search --> : MouseMove


AndyK
September 25th, 1999, 12:00 PM
I have a problem.....
Ok I have option1.option, whenever I move my mouse over that Option1, I want my label1 to display Option1.backcolor.....not the color but the line "Option1.backcolor", but it displays the number like 255 and I want it to display the "Option1.backcolor"

Please Help

santulan
September 25th, 1999, 09:55 PM
Andy,

use the following

MyStr = Option1.Name & ".Backcolor"
Label1.Caption = MyStr





Santulan