VB Script

Closed
PC Jacker Posts 31 Registration date Saturday October 12, 2013 Status Member Last seen May 8, 2014 - Jan 8, 2014 at 10:53 AM
PC Jacker Posts 31 Registration date Saturday October 12, 2013 Status Member Last seen May 8, 2014 - Jan 10, 2014 at 01:47 AM
Hello,


About few weeks ago, i am about to create math software with Visual Basic. The Problem is when i want to create script like " Text 1 + Text 2 ", I don't remember How to type script like that. When I was 10 years old, i remember how to type script. but now, I don't remember it.
Shall Be Glad If Someone Help me with this problem

Regards.

1 response

Blocked Profile
Jan 8, 2014 at 11:04 AM
OK, well try to use CStr() like:

Dim varone, vartwo
varone = 568
vartwo = 876
MsgBox (CStr(varone) + CStr(vartwo))

MsgBox (CStr(varone) + "+" + CStr(vartwo))


Post back!

//ark
-Moderator/Contributor
0
PC Jacker Posts 31 Registration date Saturday October 12, 2013 Status Member Last seen May 8, 2014 1
Jan 10, 2014 at 01:47 AM
That Script Not Work, But I've found that script.
And Thanks !
0