Hi all,
is there a way to know at runtime if a dialog has been created with PIXELS or UNITS ?
Thanks a lot
Eros
is there a way to know at runtime if a dialog has been created with PIXELS or UNITS ?
Thanks a lot
Eros
FUNCTION GetDialogUnitofMeasure (BYVAL hWnd AS LONG) AS LONG LOCAL X, Y AS LONG, R AS RECT DIALOG GET SIZE hWnd to X, Y GetWindowRect hWnd, R IF X = (R.nRight - R.nLeft) THEN FUNCTION = %DIALOG_USES_PIXELS ELSE FUNCTION = %DIALOG_USES_DIALOG_UNITS END IF END FUNCTION ... CALLBACK FUNCTION ...... UnitOfMeasure = GetDialogUnitOfMeasure (CBHNDL) .....
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment