JimRockford0924
Programmer
I need to find out to make the first letter of a string uppercase while leaving the rest as is. This is necessary for customer names, vendor names, etc. Can anyone help?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim str As String = "david"
Dim l As String = UCase(str.Substring(0, 1))
MsgBox(l + str.Substring(1))
End Sub
End Class