Hi all,
I need to add a new line of items into RiceName.txt as below:-
If File.Exists(File.DirDefaultExternal,"RiceName1.txt") Then
Dim Writer As TextWriter
Writer.Initialize(File.OpenOutput(File.DirDefaultExternal,"RiceName1.txt",True))
Writer.WriteLine(TxtRRName.Text & "," & TxtUUPrice.Text )
Writer.Close
End If
I have problem Why not add another line?
Before-Add :- information is
aaa,20
bbb,30
ccc,40
After-Add :- information is
aaa,20
bbb,30
ccc,40ddd,50 <= Error information
Please correct them.
Best Regards
Theera
:sign0085:
I need to add a new line of items into RiceName.txt as below:-
If File.Exists(File.DirDefaultExternal,"RiceName1.txt") Then
Dim Writer As TextWriter
Writer.Initialize(File.OpenOutput(File.DirDefaultExternal,"RiceName1.txt",True))
Writer.WriteLine(TxtRRName.Text & "," & TxtUUPrice.Text )
Writer.Close
End If
I have problem Why not add another line?
Before-Add :- information is
aaa,20
bbb,30
ccc,40
After-Add :- information is
aaa,20
bbb,30
ccc,40ddd,50 <= Error information
Please correct them.
Best Regards
Theera
:sign0085: