One of my buttons on a form needs to show vertical text like that:
S
T
O
P
I found solutions involving overriding Paint that seems too complicated for such a simple task. I tried this:
Private Sub LabelStopButton()
Dim btTitle As String = "S" & vbCrLf & "T" & vbCrLf & "O" & vbCrLf & "P" & vbCrLf
Me.btnStop.Text = btTitle
End Sub
and also tried replacing vbCrLf with: vbCr, vbLf, Environment.NewLine - to no avail, same result: only the first letter "S" is showing on the button. See image.
Using Visual Studio 2008 (this is an app for an old WinCE 6.0 device).
Any advice? Thanks!