Hi all. Got my copy of PowerBASIC 3.5 for DOS yesterday and am in a little bit of a bind with a database project I am working on.
I was wondering if the DOS version can handle record structure definitions in the following format:
If not, what would be the PBDOS way of handling this?
I was wondering if the DOS version can handle record structure definitions in the following format:
Code:
Type MyRec Name as String * 30 Date as String * 10 End Type Dim mydata As MyRec mydata.Name = "John Doe" mydata.Date = DATE$
Comment