Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > File I/O and Registry > Eof..


Reply
 
Thread Tools Display Modes
  #1  
Old 12-13-2005, 08:05 PM
abckid24 abckid24 is offline
Newcomer
 
Join Date: Dec 2005
Posts: 6
Default Eof..


Hey. Here's my code:

Code:
Option Explicit

Private Sub CommandButton1_Click()
Dim gradeCounter As Integer
Dim testGrade As Integer
Dim sumOfGrades As Integer
Dim averageGrade As Integer

Do While Not EOF(1)
    gradeCounter = gradeCounter + 1
    Open "C:\studentGrades.dat" For Input As #1
Input #1, testGrade
Close #1
sumOfGrades = sumOfGrades + testGrade
Loop
averageGrade = sumOfGrades / gradeCounter

MsgBox "Your Average Grade Is " & averageGrade

End Sub
Now, I get an error form the "Do While Not EOF(1)" line. It says run-time error "52." Bad file name or number.

Does anyone know what the problem is? Thanks for the help.
Reply With Quote
  #2  
Old 12-13-2005, 08:22 PM
MacroPc MacroPc is offline
Centurion
 
Join Date: Sep 2005
Location: Wisconsin
Posts: 131
Default

you need to open the file before beginning the loop
Reply With Quote
  #3  
Old 12-13-2005, 09:11 PM
reboot's Avatar
reboot reboot is offline
Keeper of foo

Retired Moderator
* Guru *
 
Join Date: Nov 2001
Location: Graceland
Posts: 15,612
Default

__________________
~ Quod non mortiferum, fortiorem me facit ~

Avatar by lebb
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->