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.
*-- mciSendString( cString, @cReturn, nRetLen, wHnd )
PROCEDURE sendstring
LPARAMETERS cString
LOCAL cRet, err
cRet = space(60)
err = mciSendString(cString,@cRet,60,0)
? cString, err, cRet
return cRet
ENDPROC