M
Maarten
hi all when i do this:
Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MenuItem3.Click
For inti = 1 To 16
Call SaveTextToFile("Channel" & " " & inti & " = " & dchanPos(inti),
"C:\Documents and Settings\Maarten\My Documents\PLC.uni", "Error")
Next
End Sub
it only saves the last loop so in the textfile stands Channel 16 = False
but i want al lines (16) are saved in the file
thanks Maarten
Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MenuItem3.Click
For inti = 1 To 16
Call SaveTextToFile("Channel" & " " & inti & " = " & dchanPos(inti),
"C:\Documents and Settings\Maarten\My Documents\PLC.uni", "Error")
Next
End Sub
it only saves the last loop so in the textfile stands Channel 16 = False
but i want al lines (16) are saved in the file
thanks Maarten