J JDeats Mar 22, 2007 #1 Are there events I can trap on when the user clicks on the Form maximize or minimize header bar "buttons".
Are there events I can trap on when the user clicks on the Form maximize or minimize header bar "buttons".
R Rune Jacobsen Mar 22, 2007 #2 JDeats said: Are there events I can trap on when the user clicks on the Form maximize or minimize header bar "buttons". Click to expand... Handle the Resized event on the form, and then check if the WindowState property of your form is equalto FormWindowState.Minimized or Maximized. Then you'll know. Rune
JDeats said: Are there events I can trap on when the user clicks on the Form maximize or minimize header bar "buttons". Click to expand... Handle the Resized event on the form, and then check if the WindowState property of your form is equalto FormWindowState.Minimized or Maximized. Then you'll know. Rune