forked from DualBrain/QB64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qcards.bas
1412 lines (1183 loc) · 41.8 KB
/
qcards.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
'* QCards - A simple database using a cardfile user interface.
'* Each record in the database is represented by a card. The user
'* can scroll through the cards using normal scrolling keys.
'* Other commands allow the user to edit, add, sort, find, or
'* delete cards.
'*
'* Input: Keyboard - user commands and entries
'* File - database records
'*
'* Output: Screen - card display and help
'* File - database records
'*
' The module-level code begins here.
'*************** Declarations and definitions begin here ************
DefInt A-Z 'Resets default data type from single precision to integer
' Define names similar to keyboard names with equivalent key codes.
Const SPACE = 32, ESC = 27, ENTER = 13, TABKEY = 9
Const DOWN = 80, UP = 72, LEFT = 75, RIGHT = 77
Const HOME = 71, ENDK = 79, PGDN = 81, PGUP = 73
Const INS = 82, DEL = 83, NULL = 0
Const CTRLD = 4, CTRLG = 7, CTRLH = 8, CTRLS = 19, CTRLV = 22
' Define English names for color-specification numbers. Add BRIGHT to
' any color to get bright version.
Const BLACK = 0, BLUE = 1, GREEN = 2, CYAN = 3, RED = 4, MAGENTA = 5
Const YELLOW = 6, WHITE = 7, BRIGHT = 8
' Assign colors to different kinds of text. By changing the color
' assigned, you can change the color of the QCARDS display. The
' initial colors are chosen because they work for color or
' black-and-white displays.
Const BACKGROUND = BLACK, NORMAL = WHITE, HILITE = WHITE + BRIGHT
' Codes for normal and highlight (used in data statements)
Const CNORMAL = 0, CHILITE = 1
' Screen positions - Initialized for 25 rows. Screen positions can be
' modified for 43-row mode if you have an EGA or VGA adapter.
Const HELPTOP = 15, HELPBOT = 23, HELPLEFT = 60, HELPWID = 20
Const CARDSPERSCREEN = 7, LASTROW = 25
' Miscellaneous symbolic constants
Const FALSE = 0, TRUE = Not FALSE
Const CURSORON = 1, CURSOROFF = 0
' File names
Const TMPFILE$ = "$$$87y$.$5$" ' Unlikely file name
Const DISKFILE$ = "QCARDS.DAT"
' Field names
Const NPERSON = 0, NNOTE = 1, NMONTH = 2, NDAY = 3
Const NYEAR = 4, NPHONE = 5, NSTREET = 6, NCITY = 7
Const NSTATE = 8, NZIP = 9, NFIELDS = NZIP + 1
' Declare user-defined type (a data structure) for random-access
' file records.
Type PERSON
CardNum As Integer 'First element is card number
Names As String * 37 'Names (in order for alpha. sort)
Note As String * 31 'Note about person
Month As Integer 'Birth month
Day As Integer 'Birth day
Year As Integer 'Birth year
Phone As String * 12 'Phone number
Street As String * 29 'Street address
City As String * 13 'City
State As String * 2 'State
Zip As String * 5 'Zip code
End Type
' SUB procedure declarations begin here.
DECLARE SUB Alarm ()
DECLARE SUB DirectionKey (Choice$, TopCard%, LastCard%)
DECLARE SUB AsciiKey (Choice$, TopCard%, LastCard%)
DECLARE SUB CleanUp (LastCard%)
DECLARE SUB ClearHelp ()
DECLARE SUB DrawCards ()
DECLARE SUB EditCard (Card AS PERSON)
DECLARE SUB InitIndex (LastCard%)
DECLARE SUB PrintLabel (Card AS PERSON)
DECLARE SUB SortIndex (SortField%, LastCard%)
DECLARE SUB ShowViewHelp ()
DECLARE SUB ShowTopCard (WorkCard AS PERSON)
DECLARE SUB ShowEditHelp ()
DECLARE SUB ShowCmdLine ()
DECLARE SUB ShowCards (TopCard%, LastCard%)
' FUNCTION procedure declarations begin here.
DECLARE FUNCTION EditString$ (InString$, Length%, NextField%)
DECLARE FUNCTION FindCard% (TopCard%, LastCard%)
DECLARE FUNCTION Prompt$ (Msg$, Row%, Column%, Length%)
DECLARE FUNCTION SelectField% ()
' Procedure declarations end here.
' Define a dummy record as a work card.
Dim Card As PERSON
'*************** Declarations and definitions end here **************
' The execution-sequence logic of QCARDS begins here.
' Open data file QCARDS.DAT for random access using file #1
Open DISKFILE$ For Random As #1 Len = Len(Card)
' To count records in file, divide the length of the file by the
' length of a single record; use integer division (\) instead of
' normal division (/). Assign the resulting value to LastCard.
LastCard = LOF(1) \ Len(Card)
' Redefine the Index array to hold the records in the file plus
' 20 extra (the extra records allow the user to add cards).
' This array is dynamic - this means the number of elements
' in Index() varies depending on the size of the file.
' Also, Index() is a shared procedure, so it is available to
' all SUB and FUNCTION procedures in the program.
'
' Note that an error trap lets QCARDS terminate with an error
' message if the memory available is not sufficient. If no
' error is detected, the error trap is turned off following the
' REDIM statement.
On Error GoTo MemoryErr
ReDim Shared Index(1 To LastCard + 20) As PERSON
On Error GoTo 0
' Use the block IF...THEN...ELSE statement to decide whether
' to load the records from the disk file QCARDS.DAT into the
' array of records called Index() declared earlier. In the IF
' part, you will check to see if there are actually records
' in the file. If there are, LastCard will be greater than 0,
' and you can call the InitIndex procedure to load the records
' into Index(). LastCard is 0 if there are no records in the
' file yet. If there are no records in the file, the ELSE
' clause is executed. The code between ELSE and END IF starts
' the Index() array at card 1.
If LastCard <> 0 Then
Call InitIndex(LastCard)
Else
Card.CardNum = 1
Index(1) = Card
Put #1, 1, Card
End If
' Use the DrawCards procedure to initialize the screen
' and draw the cards. Then, set the first card as the top
' card. Finally, pass the variables TopCard and LastCard
' as arguments to the ShowCards procedure. The call to
' ShowCards places all the data for TopCard on the front
' card on the screen, then it places the top-line
' information (the person's name) on the remaining cards.
Call DrawCards
TopCard = 1
Call ShowCards(TopCard, LastCard)
' Keep the picture on the screen forever with an unconditional
' DO...LOOP statement. The DO part of the statement goes on
' the next code line. The LOOP part goes just before the END
' statement. This loop encloses the central logic that lets
' a user interact with QCARDS.
Do
' Get user keystroke with a conditional DO...LOOP statement.
' Within the loop, use the INKEY$ function to capture a user
' keystroke, which is then assigned to a string variable. The
' WHILE part of the LOOP line keeps testing the string
' variable. Until a key is pressed, INKEY$ keeps returning a
' null (that is a zero-length) string, represented by "".
' When a key is pressed, INKEY$ returns a string with a
' length greater than zero, and the loop terminates.
' DO...LOOP with test at the bottom of the loop
Do
Choice$ = InKey$
Loop While Choice$ = ""
' Use the LEN function to find out whether Choice$ is greater
' than a single character (i.e. a single byte). If Choice$ is
' a single character (that is, it is less than 2 bytes long),
' the key pressed was an ordinary "typewriter keyboard"
' character (these are usually called ASCII keys because they
' are part of the ASCII character set). When the user enters
' an ASCII character, it indicates a choice of one of the QCARDS
' commands from the command line at the bottom of the screen.
' If the user did press an ASCII key, use the LCASE$ function
' to convert it to lower case (in the event the capital letter
' was entered).
'
' The ELSE clause is only executed if Choice$ is longer than a
' single character (and therefore not a command-line key).
' If Choice$ is not an ASCII key, it represents an "extended"
' key. (The extended keys include the DIRECTION keys on the
' numeric keypad, which is why QCARDS looks for them.) The
' RIGHT$ function is then used trim away the extra byte,
' leaving a value that may correspond to one of the DIRECTION
' keys. Use a SELECT CASE construction to respond to those key-
' presses that represent numeric-keypad DIRECTION keys.
If Len(Choice$) = 1 Then
' Handle ASCII keys.
Call AsciiKey(Choice$, TopCard, LastCard)
Else
' Convert 2-byte extended code to 1-byte ASCII code and handle.
Choice$ = Right$(Choice$, 1)
Call DirectionKey(Choice$, TopCard, LastCard)
End If
' Adjust the cards according to the key pressed by the user,
' then call the ShowCards procedure to show adjusted stack.
If TopCard < 1 Then TopCard = LastCard + TopCard
If TopCard > LastCard Then TopCard = TopCard - LastCard
If TopCard <= 0 Then TopCard = 1
Call ShowCards(TopCard, LastCard)
' This is the bottom of the unconditional DO loop.
Loop
End
' The execution sequence of the module-level code ends here.
' The program may terminate elsewhere for legitimate reasons,
' but the normal execution sequence ends here. Statements
' beyond the END statement are executed only in response to
' other statements.
' This first label, MemoryErr, is an error handler.
MemoryErr:
Print "Not enough memory. Can't read file."
End
' Data statements for screen output - initialized for 25 rows. Can be
' modified for 43-row mode if you have an EGA or VGA adapter.
CardScreen:
Data " ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿"
Data " ³ ³"
Data " ÚÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÍ͵"
Data " ³ ³ ³"
Data " ÚÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÍ͵ ³"
Data " ³ ³ ³ ³"
Data " ÚÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÍ͵ ³ ³"
Data " ³ ³ ³ ³ ³"
Data " ÚÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÍ͵ ³ ³ ³"
Data " ³ ³ ³ ³ ³ ³"
Data " ÚÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÍ͵ ³ ³ ÃÄÄÙ"
Data " ³ ³ ³ ³ ³ ³"
Data "ÚÄÄÁÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÍ͵ ³ ³ ÃÄÄÙ"
Data "³ _____________________________________ ³ ³ ³ ³ ³"
Data "ÆÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͵ ³ ³ ÃÄÄÙ"
Data "³ Note: _______________________________ ³ ³ ³ ³"
Data "³ ³ ³ ÃÄÄÙ"
Data "³ Birth: __/__/__ Phone: ___-___-____ ³ ³ ³"
Data "³ ³ ÃÄÄÙ"
Data "³ Street: _____________________________ ³ ³"
Data "³ ÃÄÄÙ"
Data "³ City: ____________ ST: __ Zip: _____ ³"
Data "ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ"
' Color codes and strings for view-mode help
ViewHelp:
Data 0,"Select card with:"
Data 1," UP"
Data 1," DOWN"
Data 1," PGUP"
Data 1," PGDN"
Data 1," HOME"
Data 1," END"
Data 1,""
Data 1,""
' Color codes and strings for edit-mode help
EditHelp:
Data 0,"Next field:"
Data 1," TAB"
Data 0,"Accept card:"
Data 1," ENTER"
Data 0,"Edit field:"
Data 1," DEL BKSP"
Data 1," RIGHT LEFT"
Data 1," HOME END"
Data 1," INS ESC"
' Row, column, and length of each field
FieldPositions:
Data 14,6,37: ' Names
Data 16,12,31: ' Note
Data 18,13,2: ' Month
Data 18,16,2: ' Day
Data 18,19,2: ' Year
Data 18,31,12: ' Phone
Data 20,14,29: ' Street
Data 22,12,13: ' City
Data 22,29,2: ' State
Data 22,38,5: ' Zip
Data 0,0,0
Sub Alarm
' The Alarm procedure uses the SOUND statement to send
' signals to the computer's speaker and sound an alarm
'
'
' Parameters: None
'
' Output: Sends an alarm to the user
' Change the numbers to vary the sound
For Tone = 600 To 2000 Step 40
Sound Tone, Tone / 7000
Next Tone
End Sub
'*
'* AsciiKey - Handles ASCII keys. You can add new commands by
'* assigning keys and actions here and adding them to the command
'* line displayed by the ShowCmdLine SUB. For example, you could add
'* L (for Load new file) to prompt the user for a new database file.
'*
'* Params: UserChoice$ - key pressed by the user
'* TopCard - the number of the current record
'* LastCard - the number of records
'*
Sub AsciiKey (UserChoice$, TopCard%, LastCard%)
Dim WorkCard As PERSON
Select Case LCase$(UserChoice$)
' Edit the current card.
Case "e"
Call ShowEditHelp
Tmp$ = Prompt$("Editing Card...", LASTROW, 1, 0)
Call EditCard(Index(TopCard))
Put #1, Index(TopCard).CardNum, Index(TopCard)
Locate , , CURSOROFF
Call ShowViewHelp
' Add and edit a blank or duplicate card.
Case "a", "c"
If UserChoice$ = "c" Then
WorkCard = Index(TopCard) ' Duplicate of top card
Else
WorkCard.CardNum = 0 ' Initialize new card.
WorkCard.Names = ""
WorkCard.Note = ""
WorkCard.Month = 0
WorkCard.Day = 0
WorkCard.Year = 0
WorkCard.Phone = ""
WorkCard.Street = ""
WorkCard.City = ""
WorkCard.State = ""
WorkCard.Zip = ""
End If
TopCard = LastCard + 1
LastCard = TopCard
Index(TopCard) = WorkCard
Index(TopCard).CardNum = TopCard
Call ShowCards(TopCard, LastCard)
Call ShowEditHelp
Tmp$ = Prompt$("Editing Card...", LASTROW, 1, 0)
Call EditCard(Index(TopCard))
Put #1, Index(TopCard).CardNum, Index(TopCard)
Locate , , CURSOROFF
Call ShowViewHelp
' Move deleted card to end and adjust last card.
Case "d"
For Card = TopCard To LastCard - 1
Swap Index(Card + 1), Index(Card)
Next Card
LastCard = LastCard - 1
' Find a specified card.
Case "f"
Call ShowEditHelp
Tmp$ = "Enter fields for search (blank fields are ignored)"
Tmp$ = Prompt$(Tmp$, LASTROW, 1, 0)
Card = FindCard(TopCard, LastCard)
If Card Then
TopCard = Card
Else
Beep
Call ClearHelp
Tmp$ = "Can't find card. Press any key..."
Tmp$ = Prompt$(Tmp$, LASTROW, 1, 1)
End If
Locate , , CURSOROFF
Call ShowViewHelp
' Sorts cards by a specified field.
Case "s"
Call ClearHelp
Tmp$ = "TAB to desired sort field, then press ENTER"
Tmp$ = Prompt$(Tmp$, LASTROW, 1, 0)
Call SortIndex(SelectField, LastCard)
TopCard = 1
Call ShowViewHelp
' Prints address of top card on printer.
Case "p"
Call PrintLabel(Index(TopCard))
' Terminates the program.
Case "q", Chr$(ESC)
Call CleanUp(LastCard)
Locate , , CURSORON
Cls
End
Case Else
Beep
End Select
End Sub
'*
'* CleanUp - Writes all records from memory to a file. Deleted
'* records (past the last card) will not be written. The valid records
'* are written to a temporary file. The old file is deleted, and the
'* new file is given the old name.
'*
'* Params: LastCard - the number of valid records
'*
'* Output: Valid records to DISKFILE$ through TMPFILE$
'*
Sub CleanUp (LastCard)
' Write records to temporary file in their current sort order.
Open TMPFILE$ For Random As #2 Len = Len(Index(1))
For Card = 1 To LastCard
Put #2, Card, Index(Card)
Next
' Delete old file and replace it with new version.
Close
Kill DISKFILE$
Name TMPFILE$ As DISKFILE$
End Sub
'*
'* ClearHelp - Writes spaces to the help area of the screen.
'*
'* Params: None
'*
'* Output: Blanks to the screen
'*
Sub ClearHelp
' Clear key help
Color NORMAL, BACKGROUND
For Row = HELPTOP To HELPBOT
Locate Row, HELPLEFT
Print Space$(HELPWID)
Next
' Clear command line
Locate LASTROW, 1
Print Space$(80);
End Sub
Sub DirectionKey (Choice$, TopCard%, LastCard%)
Select Case Choice$
Case Chr$(DOWN)
TopCard = TopCard - 1
Case Chr$(UP)
TopCard = TopCard + 1
Case Chr$(PGDN)
TopCard = TopCard - CARDSPERSCREEN
Case Chr$(PGUP)
TopCard = TopCard + CARDSPERSCREEN
Case Chr$(HOME)
TopCard = LastCard
Case Chr$(ENDK)
TopCard = 1
Case Else
Call Alarm
End Select
End Sub
'*
'* DrawCards - Initializes screen by setting the color, setting the
'* width and height, clearing the screen, and hiding the cursor. Then
'* writes card text and view-mode help to the screen.
'*
'* Params: None
'*
'* Output: Text to the screen
'*
Sub DrawCards
' Clear screen to current color.
Width 80, LASTROW
Color NORMAL, BACKGROUND
Cls
Locate , , CURSOROFF, 0, 7
' Display line characters that form cards.
Restore CardScreen
For Row = 1 To 23
Locate Row, 4
Read Tmp$
Print Tmp$;
Next
' Display help.
Call ShowViewHelp
End Sub
'*
'* EditCard - Edits each field of a specified record.
'*
'* Params: Card - the record to be edited
'*
'* Return: Since Card is passed by reference, the edited version is
'* effectively returned.
'*
Sub EditCard (Card As PERSON)
' Set NextFlag and continue editing each field.
' NextFlag is cleared when the user presses ENTER.
NextFlag = TRUE
Do
Restore FieldPositions
' Start with first field.
Read Row, Column, Length
Locate Row, Column
' Edit string fields directly.
Card.Names = EditString(RTrim$(Card.Names), Length, NextFlag)
' Result of edit determines whether to continue.
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
Card.Note = EditString(RTrim$(Card.Note), Length, NextFlag)
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
' Convert numeric fields to strings for editing.
Tmp$ = LTrim$(Str$(Card.Month))
Tmp$ = EditString(Tmp$, Length, NextFlag)
' Convert result back to number.
Card.Month = Val(Tmp$)
Locate Row, Column
Print Using "##_/"; Card.Month;
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
Tmp$ = LTrim$(Str$(Card.Day))
Tmp$ = EditString(Tmp$, Length, NextFlag)
Card.Day = Val(Tmp$)
Locate Row, Column
Print Using "##_/"; Card.Day;
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
Tmp$ = LTrim$(Str$(Card.Year))
Tmp$ = EditString(Tmp$, Length, NextFlag)
Card.Year = Val(Tmp$)
Locate Row, Column
Print Using "##"; Card.Year;
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
Card.Phone = EditString(RTrim$(Card.Phone), Length, NextFlag)
RSet Card.Phone = Card.Phone
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
Card.Street = EditString(RTrim$(Card.Street), Length, NextFlag)
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
Card.City = EditString(RTrim$(Card.City), Length, NextFlag)
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
Card.State = EditString(RTrim$(Card.State), Length, NextFlag)
If NextFlag = FALSE Then Exit Sub
Read Row, Column, Length
Locate Row, Column
Card.Zip = EditString(RTrim$(Card.Zip), Length, NextFlag)
If NextFlag = FALSE Then Exit Sub
Loop
End Sub
'*
'* EditString$ - Edits a specified string. This function
'* implements a subset of editing functions used in the QuickBASIC
'* environment and in Windows. Common editing keys are recognized,
'* including direction keys, DEL, BKSP, INS (for insert and overwrite
'* modes), ESC, and ENTER. TAB is recognized only if the NextField
'* flag is set. CTRL-key equivalents are recognized for most keys.
'* A null string can be specified if no initial value is desired.
'* You could modify this function to handle additional QB edit
'* commands, such as CTRL+A (word back) and CTRL+F (word forward).
'*
'* Params: InString$ - The input string (can be null)
'* Length - Maximum length of string (the function beeps and
'* refuses additional keys if the user tries to enter more)
'* NextField - Flag indicating on entry whether to accept TAB
'* key; on exit, indicates whether the user pressed
'* TAB (TRUE) or ENTER (FALSE)
'*
'* Input: Keyboard
'* Ouput: Screen - Noncontrol keys are echoed.
'* Speaker - beep if key is invalid or string is too long
'*
'* Return: The edited string
'*
Function EditString$ (InString$, Length, NextField)
Static Insert
' Initialize variables and clear field to its maximum length.
Work$ = InString$
Row = CsrLin: Column = Pos(0)
FirstTime = TRUE
P = Len(Work$): MaxP = P
Print Space$(Length);
' Since Insert is STATIC, its value is maintained from one
' call to the next. Insert is 0 (FALSE) the first time the
' function is called.
If Insert Then
Locate Row, Column, CURSORON, 6, 7
Else
Locate Row, Column, CURSORON, 0, 7
End If
' Reverse video on entry.
Color BACKGROUND, NORMAL
Print Work$;
' Process keys until either TAB or ENTER is pressed.
Do
' Get a key -- either a one-byte ASCII code or a two-byte
' extended code.
Do
Choice$ = InKey$
Loop While Choice$ = ""
'Translate two-byte extended codes to the one meaningful byte.
If Len(Choice$) = 2 Then
Choice$ = Right$(Choice$, 1)
Select Case Choice$
' Translate extended codes to ASCII control codes.
Case Chr$(LEFT)
Choice$ = Chr$(CTRLS)
Case Chr$(RIGHT)
Choice$ = Chr$(CTRLD)
Case Chr$(INS)
Choice$ = Chr$(CTRLV)
Case Chr$(DEL)
Choice$ = Chr$(CTRLG)
' Handle HOME and END keys, since they don't have
' control codes. Send NULL as a signal to ignore.
Case Chr$(HOME)
P = 0
Choice$ = Chr$(NULL)
Case Chr$(ENDK)
P = MaxP
Choice$ = Chr$(NULL)
' Make other key choices invalid.
Case Else
Choice$ = Chr$(1)
End Select
End If
' Handle one-byte ASCII codes.
Select Case Asc(Choice$)
' If it is null, ignore it.
Case NULL
' Accept field (and card if NextField is used).
Case ENTER
NextField = FALSE
Exit Do
' Accept the field unless NextField is used. If NextField
' is cleared, TAB is invalid.
Case TABKEY
If NextField Then
Exit Do
Else
Beep
End If
' Restore the original string.
Case ESC
Work$ = InString$
Locate Row, Column, CURSOROFF
Print Space$(MaxP)
Exit Do
' CTRL+S or LEFT arrow moves cursor to left.
Case CTRLS
If P > 0 Then
P = P - 1
Locate , P + Column
Else
Beep
End If
' CTRL+D or RIGHT arrow moves cursor to right.
Case CTRLD
If P < MaxP Then
P = P + 1
Locate , P + Column
Else
Beep
End If
' CTRL+G or DEL deletes character under cursor.
Case CTRLG
If P < MaxP Then
Work$ = Left$(Work$, P) + Right$(Work$, MaxP - P - 1)
MaxP = MaxP - 1
Else
Beep
End If
' CTRL+H or BKSP deletes character to left of cursor.
Case CTRLH, 127
If P > 0 Then
Work$ = Left$(Work$, P - 1) + Right$(Work$, MaxP - P)
P = P - 1
MaxP = MaxP - 1
End If
' CTRL+V or INS toggles between insert & overwrite modes.
Case CTRLV
Insert = Not Insert
If Insert Then
Locate , , , 6, 7
Else
Locate , , , 0, 7
End If
' Echo ASCII characters to screen.
Case Is >= SPACE
' Clear the field if this is first keystroke, then
' start from the beginning.
If FirstTime Then
Locate , Column
Color NORMAL, BACKGROUND
Print Space$(MaxP);
Locate , Column
P = 0: MaxP = P
Work$ = ""
End If
' If insert mode and cursor not beyond end, insert
' character.
If Insert Then
If MaxP < Length Then
Work$ = Left$(Work$, P) + Choice$ + Right$(Work$, MaxP - P)
MaxP = MaxP + 1
P = P + 1
Else
Beep
End If
Else
' If overwrite mode and cursor at end (but
' not beyond), insert character.
If P = MaxP Then
If MaxP < Length Then
Work$ = Work$ + Choice$
MaxP = MaxP + 1
P = P + 1
Else
Beep
End If
' If overwrite mode and before end, overwrite
' character.
Else
Mid$(Work$, P + 1, 1) = Choice$
P = P + 1
End If
End If
' Consider other key choices invalid.
Case Else
Beep
End Select
' Print the modified string.
Color NORMAL, BACKGROUND
Locate , Column, CURSOROFF
Print Work$ + " ";
Locate , Column + P, CURSORON
FirstTime = FALSE
Loop
' Print the final string and assign it to function name.
Color NORMAL, BACKGROUND
Locate Row, Column, CURSOROFF
Print Work$;
EditString$ = Work$
Locate Row, Column
End Function
'*
'* FindCard - Finds a specified record. The user specifies as many
'* fields to search for as desired. The search begins at the card
'* after the current card and proceeds until the specified record or
'* the current card is reached. Specified records are retained between
'* calls to make repeat searching easier. This SUB could be enhanced
'* to find partial matches of string fields.
'*
'* Params: TopCard - number of top card
'* LastCard - number of last card
'*
'* Params: None
'*
'* Return: Number (zero-based) of the selected field
'*
Function FindCard% (TopCard%, LastCard%)
Static TmpCard As PERSON, NotFirst
' Initialize string fields to null on the first call. (Note that
' the variables TmpCard and NotFirst, declared STATIC above,
' retain their values between subsequent calls.)
If NotFirst = FALSE Then
TmpCard.Names = ""
TmpCard.Note = ""
TmpCard.Phone = ""
TmpCard.Street = ""
TmpCard.City = ""
TmpCard.State = ""
TmpCard.Zip = ""
NotFirst = TRUE
End If
' Show top card, then use EditCardFunction to specify fields
' for search.
Call ShowTopCard(TmpCard)
Call EditCard(TmpCard)
' Search until a match is found or all cards have been checked.
Card = TopCard
Do
Card = Card + 1
If Card > LastCard Then Card = 1
Found = 0
' Test name to see if it's a match.
Select Case RTrim$(UCase$(TmpCard.Names))
Case "", RTrim$(UCase$(Index(Card).Names))
Found = Found + 1
Case Else
End Select
' Test note text.
Select Case RTrim$(UCase$(TmpCard.Note))
Case "", RTrim$(UCase$(Index(Card).Note))
Found = Found + 1
Case Else
End Select
' Test month.
Select Case TmpCard.Month
Case 0, Index(Card).Month
Found = Found + 1
Case Else
End Select
' Test day.
Select Case TmpCard.Day
Case 0, Index(Card).Day
Found = Found + 1
Case Else
End Select
' Test year.
Select Case TmpCard.Year
Case 0, Index(Card).Year
Found = Found + 1
Case Else
End Select
' Test phone number.
Select Case RTrim$(UCase$(TmpCard.Phone))
Case "", RTrim$(UCase$(Index(Card).Phone))
Found = Found + 1
Case Else
End Select
' Test street address.
Select Case RTrim$(UCase$(TmpCard.Street))
Case "", RTrim$(UCase$(Index(Card).Street))
Found = Found + 1
Case Else
End Select
' Test city.
Select Case RTrim$(UCase$(TmpCard.City))
Case "", RTrim$(UCase$(Index(Card).City))
Found = Found + 1
Case Else
End Select
' Test state.
Select Case RTrim$(UCase$(TmpCard.State))
Case "", RTrim$(UCase$(Index(Card).State))
Found = Found + 1
Case Else
End Select
' Test zip code.
Select Case TmpCard.Zip
Case "", RTrim$(UCase$(Index(Card).Zip))
Found = Found + 1
Case Else
End Select
' If match is found, set function value and quit, else
' next card.
If Found = NFIELDS - 1 Then
FindCard% = Card
Exit Function
End If
Loop Until Card = TopCard
' Return FALSE when no match is found.
FindCard% = FALSE
End Function
'*
'* InitIndex - Reads records from file and assigns each value to
'* array records. Index values are set to the actual order of the
'* records in the file. The order of records in the array may change
'* because of sorting or additions, but the CardNum field always
'* has the position in which the record actually occurs in the file.
'*
'* Params: LastCard - number of records in array
'*
'* Input: File DISKFILE$