R
Rich
using WinXp (SP3), VB2005. sometimes when a user opens the app - the app
opens in minimized WindowState and clicking on the app's icon in the windows
taskbar wont open the app to Normal WindowState. The short term fix I have
the users doing when this happens is to right-click the app's icon and select
Maximize. This will open the primary form Maximized. Then they close the
app and reopen it normally.
The windowState of the primary form (the startup form) is set to Normal
(actually, all the forms in the app are set to Normal open). If the app
opens in a minimized state - is there a way I can force the app to open in
Normal state?
I am thinking in the Form load event I could have something like
If me.WindowState = ...Minimized Then
Me.WindowState = ...Normal
End If
Any suggestions appreciated.
Thanks,
Rich
opens in minimized WindowState and clicking on the app's icon in the windows
taskbar wont open the app to Normal WindowState. The short term fix I have
the users doing when this happens is to right-click the app's icon and select
Maximize. This will open the primary form Maximized. Then they close the
app and reopen it normally.
The windowState of the primary form (the startup form) is set to Normal
(actually, all the forms in the app are set to Normal open). If the app
opens in a minimized state - is there a way I can force the app to open in
Normal state?
I am thinking in the Form load event I could have something like
If me.WindowState = ...Minimized Then
Me.WindowState = ...Normal
End If
Any suggestions appreciated.
Thanks,
Rich