pixles or mm

Post Reply
User avatar
kajot
Posts: 309
Joined: Thu Nov 02, 2006 6:53 pm
Location: Poland

pixles or mm

Post by kajot »

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
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Re: pixles or mm

Post by Enrico Maria Giordano »

Neither. They are dialog units. If you want pixels then resize the dialog in the ON INIT clause. Example:

Code: Select all

ACTIVATE DIALOG oDlg;
         ON INIT oDlg:Move( 0, 0, 1280, 1024 )
EMG
Post Reply