Display a window with a given offset
Posted: Thu Aug 28, 2014 2:34 am
How to display a window with a given offset? How do I convert the program:
If you specify different values of the row and column numbers, it does not affect the position of the window, which is still displayed in the center. Please tell me.
Code: Select all
FUNCTION LB_Warning( message, ctitle )
LOCAL aMsg := {}
* DEFAULT cTitle TO ''
IF valtype(message) # 'A'
aadd(aMsg,message)
ELSE
aMsg := message
ENDIF
IF LEN(ALLTRIM(cTitle)) > 0
DC_MsgBox(10,10,aMsg,cTitle)
ELSE
DC_MsgBox(10,10,aMsg,'Универсальная когнитивная аналитическая система "Эйдос-Х++"')
ENDIF
RETURN NIL