PVDynamic_LockWindow (hDynamic_WindowID.l,Dynamic_lParam.l)
Use this function in a CallBack to Dynamically Lock Forms.
This is automatically created by PureVision when an Event Loop is exported.
Example:
Procedure WindowCallback(WindowID,Message,wParam,lParam)
ReturnValue=#PB_ProcessPureBasicEvents
If Message=#WM_GETMINMAXINFO
ReturnValue=PVDynamic_LockWindow(WindowID,lParam)
EndIf
ProcedureReturn ReturnValue
EndProcedure