home *** CD-ROM | disk | FTP | other *** search
- DEFINT A-Z
-
- '$INCLUDE: 'PROLIB71.BI'
-
- SUB formatinfo
-
- DrawBox 1, 1, 80, 25, 2, WHITE, BLUE, 1, WHITE, BLUE, 0
-
- fg = WHITE + 8
- bg = BLUE
-
- pnc " numeric formats allow higest value of format position. ", 2, 2, fg, bg
- pnc " * only formats with astric are allowed in PROGEN all others maybe ", 3, 2, fg, bg
- pnc " used in source code created by PROGEN. ", 4, 2, fg, bg
- pnc " * format$ = 99 numbers only < (99 max) each digit = to max value ", 5, 2, fg, bg
- pnc " * format$ = 19 (19) is max value ", 6, 2, fg, bg
- pnc " * format$ = 999-99-9999 SS number ", 7, 2, fg, bg
- pnc " * format$ = 999-9999 7 digit phone ", 8, 2, fg, bg
- pnc " * format$ = (999) 999-9999 10 digit phone ", 9, 2, fg, bg
- pnc " * format$ = 19/39/99 date format ", 10, 2, fg, bg
- pnc " * format$ = ######## alphanumeric set for 8 characters (maybe more or less)", 12, 2, fg, bg
- pnc " * format$ = @@@@@@@@ alpha only same as above ", 12, 2, fg, bg
- pnc " format$ = Y/N:* force YN answer, prompt maybe included in format. ", 13, 2, fg, bg
- pnc " format$ = M/F:| force MF answer, same as above. ", 14, 2, fg, bg
- pnc " format$ = ~ force enter key for prompts or other exit key. ", 15, 2, fg, bg
- pnc " format$ = may be any format you can create in a basic string ", 16, 2, fg, bg
- pnc " even you can include the Prompt if you like. ", 17, 2, fg, bg
- pnc " ", 18, 2, fg, bg
- pnc " format$ = Test Data: 99 <- this format will print, ", 19, 2, fg, bg
- pnc " Displays Test Data: your value passed in the the length of 2 ", 20, 2, fg, bg
- pnc " Allows numbers 1 to 99. ", 22, 2, fg, bg
- pnc " ", 22, 2, fg, bg
- pnc " ", 23, 2, fg, bg
-
-
- pnc "(ANY KEY) to continue. ", 24, 15, fg, bg
-
- forkey:
- key$ = INKEY$
-
- IF key$ = "" THEN
- GOTO forkey
- END IF
-
- END SUB
-
- SUB proginfo1
-
- DrawBox 1, 1, 80, 25, 2, WHITE, BLUE, 1, WHITE, BLUE, 0
- fg = WHITE + 8
- bg = BLUE
-
- pnc " The PROGEN program generator ", 5, 15, fg, bg
- pnc "This program was written in MICROSOFT PRO BASIC 7.1 ", 8, 15, fg, bg
- pnc "and complied in the same languange. ", 9, 15, fg, bg
- pnc "The program allows the user to create a new DATABASE ", 10, 15, fg, bg
- pnc "or to EDIT an existing program DATABASE. ", 11, 15, fg, bg
- pnc "The program allows the user to create a new Qbasic ", 12, 15, fg, bg
- pnc "program or recreate a modified DATABASE from user ", 13, 15, fg, bg
- pnc "data with changes . ", 14, 15, fg, bg
- pnc " ", 15, 15, fg, bg
- pnc " ", 16, 15, fg, bg
- pnc " ", 17, 15, fg, bg
- pnc "(ANY KEY) next page. ", 21, 15, fg, bg
-
- infokey:
- key$ = INKEY$
-
- IF key$ = "" THEN
- GOTO infokey
- END IF
-
- END SUB
-
- SUB proginfo2
-
- DrawBox 1, 1, 80, 25, 2, WHITE, BLUE, 1, WHITE, BLUE, 0
- fg = WHITE + 8
- bg = BLUE
-
- pnc " THE PROgram GENerator (DATABASE) ", 5, 15, fg, bg
- pnc " BY ", 6, 15, fg, bg
- pnc " RAYMOND E. DIXON ", 7, 15, fg, bg
- pnc " (904) 765-4048 ", 8, 15, fg, bg
- pnc " ", 9, 15, fg, bg
- pnc " PERMISSION TO USE THIS PROGRAM IS GRANTED TO ANY ", 10, 15, fg, bg
- pnc " COMPUTER OWNER OR HOBBIEST SO LONG AS NO CHARGES ", 11, 15, fg, bg
- pnc " OR PROFITS ARE MADE FROM IT'S USE. ", 12, 15, fg, bg
- pnc " FOR QUESTIONS, COMMENTS, PROBLEMS OR SUGGESTIONS ", 13, 15, fg, bg
- pnc " CONTACT ME AT THE FOLLOWING ADDRESS. ", 14, 15, fg, bg
- pnc " ", 15, 15, fg, bg
- pnc " ", 16, 15, fg, bg
- pnc " RAYMOND E DIXON ", 17, 15, fg, bg
- pnc " 11660 VC JOHNSON RD. ", 18, 15, fg, bg
- pnc " JACKSONVILLE, FL. 32218 ", 19, 15, fg, bg
- pnc " Phone (904) 765-4048 ", 20, 15, fg, bg
- pnc " ", 21, 15, fg, bg
- pnc "(ANY KEY) Returns to PROGEN ", 22, 15, fg, bg
-
- waitkey:
- key$ = INKEY$
- IF key$ = "" THEN
- GOTO waitkey
- END IF
-
- END SUB
-
-