‎2007 Jul 04 7:25 PM
How do you add a tooltip to a pushbutton on the screen painter?
I would like to know how to add as data variable or text-element.
‎2007 Jul 04 8:42 PM
Or you can try this:
Create a button in a GUI status.
When you create the button, mark it type dynamic text.
Then you put the field (program or table) to the button.
In the program, use the code below and double click to create the text-001, with the button text.
data wa(30) type c.
write text-001 to wa.
When you change the wa variable, the text and hint button will change too.
Regards.
‎2007 Jul 04 7:29 PM
Hi, you need to put a text into Quick info property, at screen painter.
Regards
‎2007 Jul 04 8:42 PM
Or you can try this:
Create a button in a GUI status.
When you create the button, mark it type dynamic text.
Then you put the field (program or table) to the button.
In the program, use the code below and double click to create the text-001, with the button text.
data wa(30) type c.
write text-001 to wa.
When you change the wa variable, the text and hint button will change too.
Regards.