Vertical text on a Button

Zenerdiode

Active Member
Licensed User
This works fine in the IDE and when Opt Compiled for the desktop; but not on the device at all. Does anyone know a workaround?
 

Attachments

  • Vert.sbp
    1.5 KB · Views: 201

Zenerdiode

Active Member
Licensed User
Thanks Erel,

That works, however I think I'm going to have to redesign my form; as the ImageButton interaction is different than the other buttons. When you select an ordinary button, its bacground turns black; but the ImageButton 'sinks' as if it is a 3D button.
 

Cableguy

Expert
Licensed User
Longtime User
Yu can use the image button in Opaque mode, changing its background color in the click event and doing a litle sleep....;)
Something like....

Sub myimgbtn_click
Myimgbtn.color=cblack
sleep (100) ' This will alow for the color change to be noticeable, in case the event done in the sub are too quick...
....
do something
...
Myimgbtn.color=cGray ( or whatever the default color was)
End sub
 
Top