Dim FirstName As String
Dim LastName As String
Dim FullName As String
FirstName = "Michael "
LastName = "Voller"
FullName = FirstName & LastName
MessageBox.Show(FullName)
to convert a number to a string
Dim hi As Integer
hi = 54
Dim bye As String
bye = hi.ToString
MessageBox.Show(bye)
No comments:
Post a Comment