|

Example:


-- Restrict the window size to 200x100 minimum

-- and 800x600 maximum: function g_OnGetMinMaxInfo()

tbReturn = {}; tbReturn.MinX = 200;

tbReturn.MinY = 100;

tbReturn.MaxX = 800;

tbReturn.MaxY = 600;



end

return tbReturn;


D i a log Fun c t ion s


Dialog functions are called by the application whenever dialogs are used. These functions allow the developer to control how certain aspects of the dialog behave.


|