Resizing a form...

  • Thread starter Thread starter Florian May
  • Start date Start date
F

Florian May

Hi,

the problem:
the application is based on NON-MDI-Forms... :

1.
an application is started and shows a form.
2.
the user opens a second form.
3.
the user minimized the second form
4.
now, with a button on the starting form the user wants to
normalize (windows-state) the second form.
But WITHOUT any success..

(At the moment)....I've NO POSSIBILITY to show a form
(with coding) if the user minimized it before.


Does anybody have an idea?


bye



Florian
 
You might try something like this.

<asp:HyperLink id="zoom1" name="vlarge"
onclick="vlarge1=window.open('','vlarge','resizable=no,scrollbars=no,status=
no,toolbar=no,height=450,width=575,left=50,top=100');vlarge1.focus();return
true;" ... rest of you hyperlink stuff .....
 
Back
Top