I want to open EXE file from the project resources,
This file require no installation just came with two .dll files, I put all the files inside the resources but my problem is the path will be different if I run my project from other computer.
I'm trying this method, it works but I guess I should use different path like for example "my.resources"
Can someone tell me how I can do that if the EXE file require two .dll files to run?
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Process.Start("C:\Users\PC\source\repos\WindowsApp2\WindowsApp2\Resources\TSICT.exe")
End Sub
End Class