Hello. I am trying to save my query results from Microsoft SQL Server to a text file. My code is working out perfectly, except I need to format the data elements.
This works fine, but for instance, I need stu_lname to be 20 spaces long, even if the data only contains 3 characters.
ex: ANDERSON PAMELA should be
ANDERSON PAMELA
I hope this makes sense, and any help will be appreciated.
Code:
'create the reader
Dim reader As SqlDataReader = (sqlcommand.ExecuteReader)
'create the builder
Dim sb As New System.Text.StringBuilder
While reader.Read()
Dim courseName As String = CStr(reader("stu_lname"))
Debug.WriteLine(courseName)
sb.AppendLine(reader.Item("stu_id") & " " & reader.Item("stu_ssn") & " " & reader.Item("stu_lname") & " " & reader.Item("stu_fname"))
End While
Using writer As New IO.StreamWriter(savefiledialog1.FileName)
writer.Write(sb.ToString)
This works fine, but for instance, I need stu_lname to be 20 spaces long, even if the data only contains 3 characters.
ex: ANDERSON PAMELA should be
ANDERSON PAMELA
I hope this makes sense, and any help will be appreciated.