Is this possible. I can do it with a label but setting the text of a label is harder.
Code: Select all
Define Button button_1
Row 60
Col 135
Caption 'Hello'
BackColor {72,255,72}
End Button
Moderator: Rathinagiri
Code: Select all
Define Button button_1
Row 60
Col 135
Caption 'Hello'
BackColor {72,255,72}
End Button
Code: Select all
Define Label button_1 //change
Row 60
Col 135
Value 'Hello' //change
BackColor {72,255,72}
End Label //change