11-18-2022, 01:35 PM
The simplest is 3 strings: one for date, one for level, one for comment and repeat.
You can do this on a word processor.
Next level towards Database for Basic is setup a User Defined Type
Type Blood
Date as string * 10
Level as Integer
Comment as string * 255 ' <<< you have to decide a maximum number or characters if you hope to file it using RA*
End Type
* But this is a setup for doing it with Random Access but there are a 1000 other ways to do it without requiring fixed strings.
But for first learning Database app I recommend Random Access a step above 3 lines and repeat....
You can do this on a word processor.
Next level towards Database for Basic is setup a User Defined Type
Type Blood
Date as string * 10
Level as Integer
Comment as string * 255 ' <<< you have to decide a maximum number or characters if you hope to file it using RA*
End Type
* But this is a setup for doing it with Random Access but there are a 1000 other ways to do it without requiring fixed strings.
But for first learning Database app I recommend Random Access a step above 3 lines and repeat....
b = b + ...