label1.caption = text1.text + text2.text
I give you a very simple code. you can modify it as your requirement.
abu taher
Practically a Posting Shark
847 posts since Jul 2008
Reputation Points: 14
Solved Threads: 78
Skill Endorsements: 0
try this
Private Sub Command1_Click()
Dim a As String
Dim b As String
a = Text1.Text
b = Text2.Text
s = Space(3) '3 mean how many space....you can change it
Label1.Caption = a + s + b
End Sub
abu taher
Practically a Posting Shark
847 posts since Jul 2008
Reputation Points: 14
Solved Threads: 78
Skill Endorsements: 0
use 2 instead 3. like
s = Space(2)
abu taher
Practically a Posting Shark
847 posts since Jul 2008
Reputation Points: 14
Solved Threads: 78
Skill Endorsements: 0
Question Answered as of 3 Years Ago by
abu taher
and
abhi.navale