Skip to content

Commit

Permalink
Replace Print #hFile to Write #hFile
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Aug 3, 2014
1 parent 1458603 commit d5ec08f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion I-Nex/i-nex/.src/Reports/MCPU_REPORT.module
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ Public Sub _inits()
Else
hFile = Open FReport_Gen.ButtonBox1.Text For Write Create
Endif
Print #hFile, DATA_RETURN
Write #hFile, DATA_RETURN
Close #hFile
End
2 changes: 1 addition & 1 deletion I-Nex/i-nex/.src/Reports/MDRIVES_REPORT.module
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Public Sub _inits()
Else
hFile = Open FReport_Gen.ButtonBox1.Text For Write Create
Endif
Print #hFile, DATA_RETURN
Write #hFile, DATA_RETURN
Close #hFile

End
2 changes: 1 addition & 1 deletion I-Nex/i-nex/.src/Reports/MMOBO_REPORT.module
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ Dim hFile As File
Else
hFile = Open FReport_Gen.ButtonBox1.Text For Write Create
Endif
Print #hFile, DATA_RETURN
Write #hFile, DATA_RETURN
Close #hFile
End

0 comments on commit d5ec08f

Please sign in to comment.