Harici dosyalar programa nasıl gömülür

Hepsini yaptım ancak ek bir kod yazmam gerekmi ? Çünkü butona tıklayınca bunların açılması gerek.
 
Ek kodların ne oludğunu açıklarsanız çok iyi olur.
Kod:
Public Class Form1


Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click


' Görev yöneticisinde açık dosyayı kapat
Shell("taskkill /f /im " & "Başlat.exe", AppWinStyle.Hide)


End Sub


Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
On Error Resume Next
Dim yol As String = Application.StartupPath & "\Başlat.exe"
IO.File.WriteAllBytes(yol, My.Resources.Başlat)
If IO.File.Exists(yol) Then Process.Start(yol)
End Sub


Private Sub Form1_FormClosing(sender As Object, e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing


Try
Dim dosyaVarmi = My.Computer.FileSystem.FileExists(Application.StartupPath & "\Başlat.exe")
If dosyaVarmi = True Then
'Dosya açıksa kapat
Shell("taskkill /f /im " & "Başlat.exe", AppWinStyle.Hide)
End If
Kill(Application.StartupPath & "\Başlat.exe") 'mesaj vermeden Diskten siler


'Çöp kutusuna taşıma mesajı veren silme kodu
'My.Computer.FileSystem.DeleteFile(Application.StartupPath & "\Başlat.exe", FileIO.UIOption.OnlyErrorDialogs, FileIO.RecycleOption.DeletePermanently, FileIO.UICancelOption.ThrowException)

Catch ex As Exception
MsgBox("dosya bulunmadı")
End Try


End Sub


End Class
 
Bu siteyi kullanmak için çerezler gereklidir. Siteyi kullanmaya devam etmek için çerezleri kabul etmelisiniz. Daha Fazlasını Öğren.…