cancel
Showing results for 
Search instead for 
Did you mean: 

script

Former Member
0 Kudos

Hi,

In one of the window i have like this

/: IF NOT &G_TEXT& IS INITIAL

/: BOX FRAME 10 TW

nm: &g_text&

/: endif

my aim is to display box when there is text

else

box should not display

by above coding its diplaying box

please anyone guide me..

Regards

Deepa

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi..,

Some times NOT will not work in SCRIPTS..

try this..

/: IF &G_TEXT& eq ' '

/: ELSE

/: BOX FRAME 10 TW

nm: &g_text&

/: ENDIF.

regards,

sai ramesh

Former Member
0 Kudos

ThanQ Ramesh its working

Deepa

Answers (1)

Answers (1)

Former Member
0 Kudos

can u please try

/:IF &G_TEXT& <> ' '

santhosh

Former Member
0 Kudos

santosh

tried its not working..

Deepa