cancel
Showing results for 
Search instead for 
Did you mean: 

Hide window without delete

sudhakara_reddy4
Participant
0 Kudos

how to hide window without delete in script or smart form if it is already exist

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

in smartform

give the condtion in the output options pf rhe window

1 = 2.. this condition will never be satisfied

sudhakara_reddy4
Participant
0 Kudos

the scenario is window is ready in script and i want to use it later, for temporary it should be hidden,

Former Member
0 Kudos

Hi,

<b>[1].</b> If print program is custom build, do not call this window.

<b>[2].</b> If print probram is not custom built then put the window code in between IF.... ENDIF. You have to do like this.

- First define a variable with

/:  DEFINE &true& = ' '.

- Now put your all other code between this condition.

      /: IF &true& EQ '1'.
         ..............
         ..............
         your code
         ..............
      /: ENDIF.

<b>[3].</b> Or as the third option, commend your code. But in this case you will loose your formatting since you have to put comment ( /* ) code at each line.

Let me know if you need any other information.

Regards,

RS

Former Member
0 Kudos

put some text element at first of the window and don't call that text element in ur driven program obviously it is hiden. I hope that u got it.