Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP & VB command comparison?
Message
From
02/09/1998 11:44:39
 
 
To
01/09/1998 21:39:13
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00131782
Message ID:
00132402
Views:
16
>That's the type of comparison I'm imagining anyway:
>
>FoxPro Visual Basic
>
>IIF(,,) IIF(,,)
>+ (string op) & (string op)
>
>
>BTW, I was very surprised to see that VB would let me write:
>
>"Summary report at the " & CONTROL.nLevel & " level"
>
>(where CONTROL.nLevel is a numeric field)
>
>Are there some consistent syntax rules in VB that allows this kind of type mixing or is it more hodge-podge?


You can use above syntax in VB without any doubt. As the first operand is string.

If you use,

ab = 'Hi Friends'
cd = 12


if you use
ab + cd ----> No problem .
ab & cd ----> No problem, Preferable for string concatenation.

If by chance AB gets a numeric value (say 23) , then

ab + cd ----> 25, not '1223'

ab & cd ----> '1223' as you want.

Very simple, if you think.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform