How to transfer information using dim X as string.
How to transfer information using dim X as string.
API Declarations
'You'll need 2 text boxes and 1 command button
'Simply copy and paste this code
'This code is obviously stupid in this perpesctive, you can use it in different
'ways.
'Sorry for any typos I might have made
Rate How to transfer information using dim X as string.
(1(1 Vote))
Dim transferTxt As String
transferTxt$ = Me.Text1.Text$
If Text1.Text = "" Then
MsgBox "No Text To Transfer", vbCritical, "Error"
Else
Text2.Text = (transferTxt)
End If
End Sub
How to transfer information using dim X as string. Comments
No comments yet — be the first to post one!
Post a Comment