Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DECLARE INTEGER MessageBox IN user32 As MessageBoxA;
INTEGER hwnd,;
STRING lpText,;
STRING lpCaption,;
INTEGER wType
you may also have a look on foxclasses,
I already touched the same aspect and second it.Mike Lewis said:But it should be the individual user's choice to do that - not something imposed by the developer.
Chriss said:There's even a simple hack to keep all code as is with MessageBox calls, by a #DEFINE MessageBox YourMessageBoxFunction and implementing the same parameters as the MessageBox in YourMessageBoxFunction.prg that starts a form, sets its caption etc., waits in a modal state - just as the Messagebox does - and eventually returns the usual return values, too.
You would need multiple #DEFINES for every possible abbreviation.