KMoody
Member
Progress: 10.2b SP7
OpenEdge Architect: 3.4.2.R342_v20090122-9I96EiWElHi8lheoJKJIvhM3JfVsYbRrgVIWL
OpenEdge OS: Windows 7 Professional 2009 SP1
When you set up a database field, you can assign it default help text:

As the user tabs through entry fields, this help text appears automatically at the bottom of most frames. However, if the frame is a dialog box, you cannot see this help text.
I'm using a dialog box frame. When the user focuses on a fill-in or editor box, I want to display the widget's field's default help text in a text box widget. However, I'm not sure how to access that information.
I've tried using buffer-field like this:
However, the value returned is always unknown.
OpenEdge Architect: 3.4.2.R342_v20090122-9I96EiWElHi8lheoJKJIvhM3JfVsYbRrgVIWL
OpenEdge OS: Windows 7 Professional 2009 SP1
When you set up a database field, you can assign it default help text:

As the user tabs through entry fields, this help text appears automatically at the bottom of most frames. However, if the frame is a dialog box, you cannot see this help text.
I'm using a dialog box frame. When the user focuses on a fill-in or editor box, I want to display the widget's field's default help text in a text box widget. However, I'm not sure how to access that information.
I've tried using buffer-field like this:
Code:
DEFINE VARIABLE hPopupBuffer AS HANDLE NO-UNDO.
CREATE BUFFER hPopupBuffer FOR TABLE "CUSTOMER".
hPopupBuffer:BUFFER-FIELD("CUSTOMER-NAME"):HELP.
However, the value returned is always unknown.