Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
_screen resizing issue
Message
From
11/06/2009 18:02:37
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
_screen resizing issue
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Miscellaneous
Thread ID:
01405383
Message ID:
01405383
Views:
221
Gang,

If you run the following code you will see how to tell if the user resizes

oForm = CREATEOBJECT("frmTest")
oForm.Show(1)

DEFINE CLASS frmTest AS Form
Caption = "Resize or move the form"
PROCEDURE INIT

*---------------------------------------------------------------------
* Set the API calls for intercepting the Windoes resizing messages
*---------------------------------------------------------------------
#define WM_EXITSIZEMOVE 0x0232
#define BE_FireAfterEvent 0

BINDEVENT(ThisForm.HWnd, WM_EXITSIZEMOVE, ;
ThisForm, "OnWindowResizeExit", ;
BE_FireAfterEvent)

BINDEVENT(_Screen.HWnd, WM_EXITSIZEMOVE, ;
ThisForm, "OnWindowResizeExit", ;
BE_FireAfterEvent)

ENDPROC

PROCEDURE OnWindowResizeExit
LPARAMETERS hWnd, nMsg, nwParam, nlParam
ThisForm.Caption = "Now, try resizing or moving the VFP Screen"
MESSAGEBOX("Finished Resizing or Moving")
ENDPROC

ENDDEFINE
Next
Reply
Map
View

Click here to load this message in the networking platform