I have the following statements
TextBox19.Text &= "ID" & ControlChars.Ta b
TextBox19.Text &= "Requiremen t Name" & ControlChars.Ta b
TextBox19.Text &= "Status" & ControlChars.Ta b
TextBox19.Text &= "Owner" & ControlChars.Ne wLine
I want to Bold and Underline only the above text and not the information
that will be printed later below it.
Also when the columns get filled they dont align correctly how can I do that.
It currently looks like this
ID Requirement Name Status Owner
1 abcdef Draft John
2 uryeuyreuyrueyr ueyruery Draft Amy
3 ytreytryetryetr ye Accepted Carl
It want it to looks like this
ID Requirement Name Status Owner
only the above line should be BOLD
1 abcdef Draft John
2 uryeuyreuyrueyr ueyruery Draft Amy
3 ytreytryetryetr ye Accepted Carl
Please can anyone tell me how to do the formatting within a text box
Thank you
Amruta
TextBox19.Text &= "ID" & ControlChars.Ta b
TextBox19.Text &= "Requiremen t Name" & ControlChars.Ta b
TextBox19.Text &= "Status" & ControlChars.Ta b
TextBox19.Text &= "Owner" & ControlChars.Ne wLine
I want to Bold and Underline only the above text and not the information
that will be printed later below it.
Also when the columns get filled they dont align correctly how can I do that.
It currently looks like this
ID Requirement Name Status Owner
1 abcdef Draft John
2 uryeuyreuyrueyr ueyruery Draft Amy
3 ytreytryetryetr ye Accepted Carl
It want it to looks like this
ID Requirement Name Status Owner
only the above line should be BOLD
1 abcdef Draft John
2 uryeuyreuyrueyr ueyruery Draft Amy
3 ytreytryetryetr ye Accepted Carl
Please can anyone tell me how to do the formatting within a text box
Thank you
Amruta
Comment