|
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.
|