home *** CD-ROM | disk | FTP | other *** search
-
- ///////////////////////////////////////////////////////////
- // PROGRAM: //
- // AUTHOR: Christopher Saunders //
- // DATE: April 25th 1992 //
- // //
- // INFORMATION //
- // ~~~~~~~~~~~ //
- // TFE (TelixFonEd) by Paul Roub is a brilliant program //
- // that allows you to edit your Telix dialing directory. //
- // This script will execute TFE from within Telix, and //
- // will prevent from your dialing directory from being //
- // trashed (Telix does not close it when shelling to //
- // DOS - done to increase speed). A similar script is //
- // found in the TFE documentation, however, the NEWDIR //
- // function will ensure that you are in the Telix //
- // directory. If you are not in the Telix directory, //
- // then Telix would not be able to find TELIX.FON. //
- ///////////////////////////////////////////////////////////
-
- main()
-
- {
- loadfon("DUMMY.FON."); // Loads DUMMY.FON
- newdir(_telix_dir); // Puts you in the Telix directory
- run ("TFE","TELIX.FON",0); // Runs TFE
- loadfon("TELIX.FON"); // Loads TELIX.FON back into Telix
- }
-