开发者

VB.net form restore not showing form

I'm currently using VB.Net 2008.

The project has the "make single instance application" checkbox checked.

The application works by hiding the form when the form is minimized.

Private Sub Form1_Resize(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Resize
    If Me.WindowState = FormWindowState.Minimized Then
        Me.Hide()
    End If
End Sub

When the appropriate menu item is pressed withi开发者_如何学运维n the notifyicon the form should show itself again.

     Private Sub ShowToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _  
                         Handles ShowToolStripMenuItem.Click
            Me.Show()
            Me.WindowState = FormWindowState.Normal
       End Sub  

This works fine until the user tries to open the same application while the form is minimized. When this occurs the application will block a new instance of the application the user was trying to open as expected, however when the user then goes to show the form from the notifyicon's menu it will have seemed to open (it shows the form in the taskbar) but no window is shown.

At this point the window can be maximized and works as intended but by using the restore button the window will not be drawn but will still be shown in the taskbar.

If any help can be given on how to restore the form correctly from being hidden it would be most appreciated.

Thanks in advance


Just a couple of suggestions...

Instead of using Hide() and Show(), could you use the ShowInTaskbar property of the form instead?

Set it to false where you use Hide() and true where you currently use Show(), and see if that makes any difference.

Or perhaps set the WindowState to Normal before calling Show().

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜