VBDotNetProgrammer
Programmer
Hi does anyone know if its possible to have an instance of outlook or any application for that matter open invisibly?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim p As New Process
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
p.StartInfo.FileName = "outlook.exe"
p.Start()
p.Start("outlook.exe")