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.
Create procedure ASCIIVals(InStr varchar(1)) returns (RetVal integer) as
begin
if InStr="a" then
RetVal=97;
if InStr="b" then
RetVal=98;
if InStr="c" then
RetVal=99;
etc.