Dim a as string
Dim b as string
Dim c as string
a="HI"
b=" "" "
c=a+b
How i show c="HI"
I can not add "" (this string). Pls help me
I need add 2 string in VB 6.0?
Dim a as String
Dim b as String
Dim c as String
a = "HI"
b = "!"
c = a %26amp; b
would make c = HI!
Is that what you're asking?
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment