Arne,
(I thought I sent this last night, if this is a double post)
The window state will continue to be Normal.
If you prefer:
| > Case FormWindowState.Normal
| > MessageBox.Show("Form was restored or resized",
| > Application.ProductName)
;-)
--
Hope this helps
Jay [MVP - Outlook]
..NET Application Architect, Enthusiast, & Evangelist
T.S. Bradley -
http://www.tsbradley.net
| Hi Jay!
|
| Jay B. Harlow [MVP - Outlook] wrote:
| > I normally simply handle the Resize event.
| >
| > Something like:
| >
| > Protected Overrides Sub OnResize(ByVal e As System.EventArgs)
| > MyBase.OnResize(e)
| > Select Case Me.WindowState
| > Case FormWindowState.Normal
| > MessageBox.Show("Form was restored",
| > Application.ProductName)
|
| What happens if the user really resizes the form?
|
| Cheers
|
| Arne Janning
|
|