You can have this done either at design time or at execution time.
The first would be disabling the check box for MaxBox, MinBox, Resizable.
The second can be done by seting to false the next values in it's parent class:
titlebar = false
minbox = false
maxbox = false
resizable = false...
Thanks for your answer. I found another way, yet similar to yours, to do it.
SingleLineEdit sle_box[]
INTEGER li_x = 0
FOR li_x = 1 TO 5
sle_box[li_x] = CREATE SingleLineEdit
sle_box[li_x].width = 180
sle_box[li_x].height = 60
sle_box[li_x].text = string(ii_variable[li_x])...
Hi,
Can anyone please help me on this. I want to place a value in the text property of a single line edit. The thing is that I have 10 single line edit's and I want to take the values from an array.
Basically what I need is something like this:
FOR x = 1 TO 10...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.