home *** CD-ROM | disk | FTP | other *** search
- uses freedoor;
-
- var
- TempStr : String;
- Ch : Char;
- begin
- InitDoorDriver;
- CClrScr;
- CWriteLn ('`70 FreeDoor Example Program `07');
- CWriteLn ('');
- CWriteLn ('`09 Enter a sentence below: `07');
- TempStr := CMaskInput ('1234567890!@#$%^&*()-_=+`~', 40);
- CWriteLn ('');
- CWriteLn ('`0FYou entered: `07' + TempStr);
- CPause;
- CClrScr;
- CWriteLn ('`07Your Name: `0F' + UserInfo.RealName);
- CWriteLn ('`07Your Handle: `0F' + UserInfo.Handle);
- CWriteLn ('`07Your City/State: `0F' + UserInfo.CityState);
- CWriteLn ('`07Node Number: `0F' + UserInfo.Node);
- CWriteLn ('`07Path to DropFile: `0F' + UserInfo.DropFile);
- CWrite ('`07DropFile Type: `0F');
- CWriteLnLong (UserInfo.DropType);
- CWrite ('`07Port Number: `0F');
- CWriteLnLong (UserInfo.ComPort);
- CWrite ('`07Port Type: `0F');
- CWriteLnLong (UserInfo.ConnType);
- CWriteLn ('`07BBSID: `0F' + UserInfo.BBSID);
- CWriteLn ('');
- CPause;
- DeInitDoorDriver;
- end.
-