minimize progress window to task bar

anandknr

Member
Hi all,

I am developing a 10.2B .net gui application. I have also my old progress Gui . I am calling my new winform from this old application and got it worked. But the only problem is I have both the windows (old and new) kept opened and when a alert-box comes winform will go behind the progress from. So message box will seems to be come from the progress window.
I have tried the same by minimizing the progress window (not from code) and seems everything fine . The message got alerted with in winforms. So I can conclude that minimizing the progress window to task bar will solve my issue,but how ?? any progress code for that ?
 
To minimize the progress window this progress code applied to the progress window object will do the job:

ASSIGN C-Win:WINDOW-STATE = 2.
 
Back
Top