CODE:
Dim CIK As String
CIK = MsgBox("Programdan Çıkmak İstiyormusunuz?", MsgBoxStyle.Information + MsgBoxStyle.YesNoCancel + MsgBoxStyle.ApplicationModal, "Bilgi")
If CIK = vbYes Then
Application.Exit()
Else
If CIK = vbNo Then
Me.Show()
Else
If CIK = vbCancel Then
Me.Show()
End If
End If
End If
CHICAG
mehmetbilen2005@yahoo.com
8 Ekim 2007 14:13