I’m currently looking for a way to open an external application that’s located in the userprofile folder. This is my current codes:
Dim p As New ProcessStartInfo
'program function'
p.FileName = "%userprofile%/folder/app.exe"
Process.Start(p)
I got no luck so far. If anyone knows how to do this that would be nice
Try