PVDynamic_Resize (hDynamic_WindowID.l)
Use this function in a CallBack to Dynamically Resize Gadgets.
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_SIZE
ReturnValue=PVDynamic_Resize(WindowID)
EndIf
ProcedureReturn ReturnValue
EndProcedure