2015-11-16 02:51 AM
2015-11-16 03:00 AM
UI_OUTFIELD p_somethingThis will give you the current value of that parameter but as fixed outfield text.
2015-11-16 03:38 AM
2015-11-16 06:05 AM
UI_INFIELD {3} ALL_txt, 10, 10, 100, 14,
7, "", 2, 1, !!! or type 5
0, 0, 0, 0,
1, "Text_1" 0,
2, "Text_2" 1
Or it is necessary to use arrays of values for the text part.
DIM stTEXTP []! Different text depending on the parameter Progr
IF Progr = "ArchiCAD" THEN
stTEXTP [1]= "Text_1"
ELSE
stTEXTP [1]= "Text_2"
ENDIF
UI_OUTFIELD stTEXTP [1], 10, 30, 111, 14
All the same you need to copy (Ctrl + C) the text part of parameter.
2015-11-16 06:32 AM