View Single Post
Old Jan 25th, 2008, 6:44 PM   #9
kewlgeye
Programmer
 
Join Date: Jan 2008
Posts: 53
Rep Power: 1 kewlgeye is on a distinguished road
Re: Input Output Function Error

Dim fileReader As String
FileOpen(1, "Sundaypm.txt", OpenMode.Input)

fileReader = My.Computer.FileSystem.ReadAllText("Sundaypm.txt")
MsgBox(fileReader)
cpaadminsundaycount = MsgBox(fileReader)
sundayResultsForm.ShowDialog()


The value is the number that I have in my Sundaypm.txt file which is 15
it actually shows in the file 15,

That number can change if the admin changes the number in a seperate form though.


I created the cpaadminsundaycount variable to store the MsgBox(fileReader) number that I think is 15 so that I can use it to do the math.
kewlgeye is offline   Reply With Quote