2009 Mar 24 1:06 PM
Hi,
in a method I have two variables V1,V2 type string.
I try to check:
if V1 = V2.
endif.
But seems not possible.
Any idea?
Thanks.
Regards.
Giovanni
2009 Mar 24 1:36 PM
Sorry for the trouble.
My mistake was:
if V1 = "value".
but it is correct:
if V1 = 'value'.
Regards,
Giovanni