Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help me please...
Message
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Help me please...
Miscellaneous
Thread ID:
00171168
Message ID:
00171168
Views:
59
I'm extremely new at VFP, and coding in general. I'm having trouble with fgets(). I'm trying to read a .dat file line by line. Each line is 306 characters. My problem is that the fgets() only reads the first line, 306 characters. When it gets to the second line, it thinks that it is 0 characters. Here is some of my code..any help would be greatly appreciated! Thanks in advance, Jill

lfilehandle=fopen(thisform.examfile, 0)
if (lfilehandle != -1)
Do while !FEOF(lfilehandle)
examstring=fgets(lfilehandle, 306)
wait window str(LEN(examstring))
if(LEN(examstring) < 2)
EXIT
else
insert into.....and so on
Next
Reply
Map
View

Click here to load this message in the networking platform