H
VB.NET Program Adı Değiş. Engelleme
Code:
Dim programadi As String = IO.Path.GetFileNameWithoutExtension(Application.Ex ecutablePath)
If programadi = "test.exe" Then ' programın adi .exe yapın
ElseIf programadi = "test" Then 'programın adını .exe koymadan yazın
Else
MsgBox("Program Adi Değiştirildiği İçin Kapatılıyor Lütfen Yeniden Yükleyiniz.", MsgBoxStyle.Critical, "Hata")
Me.Close()
End If