i have a VB program that saves records to a file in random access mode, the type is something like this:
Note that the string is of undefined length...
Without changing the source code to the VB program, is there any way I can read that file with PB? PB wants a fixed-length string, eg STRING * 255 ... is there a way around this? unfortunately I cannot modify the VB source, the workaround has to be in my PB program
------------------
Code:
Private Type MyRecord TheirName As String End Type
Without changing the source code to the VB program, is there any way I can read that file with PB? PB wants a fixed-length string, eg STRING * 255 ... is there a way around this? unfortunately I cannot modify the VB source, the workaround has to be in my PB program
------------------
Comment