[Stackoverflow] [Progress OpenEdge ABL] Creating a toggle box dynamically on a window

Status
Not open for further replies.
D

Daby

Guest
I'm taking a toggle box name from a text file And then creating a toggle box dynamically on window. I'm trying to do by this code but window is running successfully but dynamically toggle-box is not creating. I'm not getting where I'm doing wrong?

/* This is in the internal procedure of a window(cb.w)*/

Define variable h as handle.

/Taking toogle-box name as input/

Input from check.txt.

Code:
Import unformatted 
Name_checkbox

Input close.

Create toogle-box h

Assign Row = 2

Column = 1

Label = name_checkbox

Visible = true.

Continue reading...
 
Status
Not open for further replies.
Top