View Single Post
Join Date: Nov 2008
Posts: 10
Reputation: markd220 is an unknown quantity at this point 
Solved Threads: 2
markd220 markd220 is offline Offline
Newbie Poster

Re: student name and grade in file

 
0
  #2
Dec 1st, 2008
You want to make both texts one string and write that to the file.

swrStreamWriter.WriteLine(Me.textStudent.Text + " " + Me.textGrade.Text)

Also research the VB.Net String Functions for further reading.
Last edited by markd220; Dec 1st, 2008 at 4:52 pm.
Reply With Quote