hi and sorry if this seems like a really stupid question but i have decided to make a simple program for myself and a few others and im having a few problems
im not quite shore how to make it so i can add a .exe to my project and then when i click on button 1 it launches it
i sort of need to add a .exe to my project so it launches another program when someone clicks the button 1
sorry if it seems like a really simple question, im just new and trying to learn :)
Code:
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
End Sub
Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
End Sub
Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
End Sub
End Class
im not quite shore how to make it so i can add a .exe to my project and then when i click on button 1 it launches it
i sort of need to add a .exe to my project so it launches another program when someone clicks the button 1
sorry if it seems like a really simple question, im just new and trying to learn :)