Quantcast
Channel: Programmers Heaven Forums RSS Feed
Viewing all articles
Browse latest Browse all 2703

How to trace lost focus of vb.net form?

$
0
0
I want to know Which event fires when vb.net form lost it's focus? I am using Krypton Navigator.

I am using the following code to show a form.
private sub showForm(byval pform as form

Dim kryPage As New KryptonPage

Me.kryNavi.Pages.Add(kryPage)

With pform

.TopLevel = False

.Parent = kryPage

.Dock = DockStyle.Fill

.BringToFront()

.Show()

.Activate()

End With

end sub

I am using the above code to show a form.

Reply Quote

Viewing all articles
Browse latest Browse all 2703

Trending Articles