N
Neil Humphries
I want to create a splash screen with user instructions. To be most readable,
the titles for the different paragraphs should be bold, but the paragraph
should not be.
Can this be done in a text box? If not, what approach should I be using?
Private Sub UserForm_initialize()
Dim Text As Variant
Text = "Controls for editing are on the custom Add-in toolbar" & vbCrLf
& vbCrLf
Text = Text & "This Title should be bold:" & vbCrLf
Text = Text & "The vertical bar ... this should not be bold
Text = Text & vbCrLf & "This Title also should be bold:" & vbCrLf
Text = Text & "You can toggle hidden text... this should not be bold." &
vbCrLf
TextBox1.Text = Text
End Sub
the titles for the different paragraphs should be bold, but the paragraph
should not be.
Can this be done in a text box? If not, what approach should I be using?
Private Sub UserForm_initialize()
Dim Text As Variant
Text = "Controls for editing are on the custom Add-in toolbar" & vbCrLf
& vbCrLf
Text = Text & "This Title should be bold:" & vbCrLf
Text = Text & "The vertical bar ... this should not be bold
Text = Text & vbCrLf & "This Title also should be bold:" & vbCrLf
Text = Text & "You can toggle hidden text... this should not be bold." &
vbCrLf
TextBox1.Text = Text
End Sub