Hi all

ive created a small program which is a wizard to setting all the registry variables for my main program however im doing some error checking can and have said something like this
VB Code:
  1. MsgBox(MsgTxt, MsgBoxStyle.YesNo, "Application Settings Issue")
  2.                     If MsgBoxResult.OK Then
  3.                         'Open my wizard.exe
  4.                         Application.Exit()
  5.                     Else
  6.                         MsgBox("You need to complete the application settings wizard before using this software", MsgBoxStyle.Exclamation, "Application Settings Issue")
  7.                     End If

where it says " open my wizard .exe " i want to be able to run my wizard application but how would i open it from here
(Code examples please)

Many Thanks