What function is the ALERT() replacement, if any ? I need a function that displays a dialog to the user, centered in the current window, displaying the options supplied and returns which one the user picked. Thank you.
What function is the ALERT() replacement, if any ? I need a function that displays a dialog to the user, centered in the current window, displaying the options supplied and returns which one the user picked. Thank you.
Have a look at Msg*() functions family.
EMG
#include "FiveWin.ch"
function Main()
local nOption
nOption = Alert( "take an option",;
{ "&One", "&Two", "T&hree" },;
"Please, select" )
MsgInfo( nOption )
return nilThank you Antonio & Enrico.