im on remaking my application which i had help on the first time but not now my application is basically a program starter which loads a rom with an emulator but i realized that all the file path's are in my c drive e.g.this is the location of the vba emulator "C:\Users\shifty\Desktop\pokemon games\Emulator\VBA\VisualBoyAdvance.exe" and this is the location of the rom "C:\Users\shifty\Desktop\pokemon games\Roms\Red\Pokemon Red.gb" so i was using this code so when i click a button it loads that rom up in that emulator Private Sub Red_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Red.Click
Shell("C:\Users\shifty\Desktop\pokemon games\Emulator\VBA\VisualBoyAdvance.exe ""C:\Users\shifty\Desktop\pokemon games\Roms\Red\Pokemon Red.gb""", vbNormalFocus)
End Sub then after completing the application i realized if i sent this application to someone it would look for the files in their c drive but for my user name and on my desktop "C:\Users\shifty\Desktop\" which they dont have i dont know how to make the application look in a certain folder if someone could explain in detail of how to do this it would help a lot i cant find an easier way to explain that but if you have any questions or help please feel free to comment