این تایپیک
https://barnamenevis.org/showthread.p...8C%D9%86%DB%8C
و این تایپیک
https://barnamenevis.org/showthread.p...B2%D8%A7%D8%B1
کد ویبی دات نت بود خود دیگه تبدیلش کن
Public Class Form1
Implements IMessageFilter
Public Sub New()
InitializeComponent()
Application.AddMessageFilter(Me)
Timer1.Enabled = True
End Sub
Public Function PreFilterMessage(ByRef m As Message) As Boolean Implements IMessageFilter.PreFilterMessage
If (m.Msg >= &H100 And m.Msg <= &H109) Or (m.Msg >= &H200 And m.Msg <= &H20E) Then
Timer1.Stop()
Timer1.Start()
End If
End Function
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Timer1.Stop()
Application.Exit()
End Sub
End Class