Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Tooltip

Former Member
0 Likes
591

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.

1 ACCEPTED SOLUTION
Read only

rodrigo_paisante3
Active Contributor
0 Likes
550

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.

2 REPLIES 2
Read only

rodrigo_paisante3
Active Contributor
0 Likes
550

Hi, you need to put a text into Quick info property, at screen painter.

Regards

Read only

rodrigo_paisante3
Active Contributor
0 Likes
551

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.