hình như bạn hiểu sai ý mình thì phải đoạn code này
Code:
Private Sub frmMain_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim process As New Process
With process
With .StartInfo
.FileName = "perl.exe"
.Arguments = "filename.pl"
.WorkingDirectory = "C:\Perl\eg"
End With
.Start()
End With
End Sub
là khi Form load lên sẻ gọi một chuơng trình khác chạy mà có nghĩa là khi mình đã biết một Filename và WorkingDirectory.
còn theo anh rongchaua thì mình phải xác đinh được cái này UpgradeCode