Reputation: 319
I want to check in Uniface in a condition whether a string variable is null.
How do I do this in Uniface?
Upvotes: 0
Views: 68
Reputation: 319
I found the following solution:
variables
string my_variable
endvariables
if( my_variable = "")
;is executed if my_variable is null
endif
Upvotes: 0