Could You tell me , if x1,x2,x3,x4 are in pixles or mm ?
DEFINE DIALOG oDlg FROM x1, x2 TO x3, x4 ;
TITLE If( lAppend, "New Customer", "Customer Update" )
@ x1, x2 SAY "&Name:" OF oDlg
@ x1, x2 GET cName OF oDlg
pixles or mm
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: pixles or mm
Neither. They are dialog units. If you want pixels then resize the dialog in the ON INIT clause. Example:
EMG
Code: Select all
ACTIVATE DIALOG oDlg;
ON INIT oDlg:Move( 0, 0, 1280, 1024 )