RobertoMexicali
Programmer
Hi, i used to work with clarion 5 and when i need to know if a string variable is empty i ask this:
if ~var:string then var:string = 'value'.
but with clarion 6.3 this dont work, i have been trying:
if len(clip(var:string)) = 0
if null(var:string)
if ~var:string
when i message the value of the variable it returns me 100 (the lenght of the string)
is anybody knows a function or command that indicates me when a variable has'not value?
thanks
if ~var:string then var:string = 'value'.
but with clarion 6.3 this dont work, i have been trying:
if len(clip(var:string)) = 0
if null(var:string)
if ~var:string
when i message the value of the variable it returns me 100 (the lenght of the string)
is anybody knows a function or command that indicates me when a variable has'not value?
thanks