Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Saolun Ama Bu Soru Sormadan ÇıkıyorApplication.Exit()
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim intrebare As String
intrebare = MsgBox("Programdan Çıkmak İstiyormusunuz ?", MsgBoxStyle.YesNo)
If intrebare = "Yes" Then ' if we press yes it quits vb.net
'here is the problem how to say him if he selects yes to quit from 'visual studio 2008?
'Me.Close() if I select yes I want that it exits my full 'software , so exits visual studio 2008 is it possible?
Else
End If
'ok
Me.Close()
End Sub
bunu denedin mi ?