Just need a lil help. I want to open a vb.net application with a vb.net application if that makes sense. Im designing a programme that allows the end user to open and have a go at doing a vb.net appliction with the application that im making.
Ive tried something like this:
Try
Dim p As New System.Diagnostics.Process
p.StartInfo.FileName = "K:\Uni\Year 2\Visual Basic\Report\MSDN\Absolute Beginner's Series VB Lesson 1\01 VB Code\Lesson01\HelloWorld.exe"
p.Start()
Catch ex As Exception
MsgBox("Error - " + ex.Message)
End Try
But keep getting an error that it can't find the application even thought it is there. I think it might be the .exe that is wrong but im not sure want ending the VB.Net application uses

New Topic/Question
Reply




MultiQuote






|