Mi2830
Mi2830

Reputation: 319

How do I check in a condition in Uniface whether a string variable is null?

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

Answers (1)

Mi2830
Mi2830

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

Related Questions