Opening a file in a specific program.
I apologise if this seems like a newbie question :rolleyes:
Is there a way such that i can get a file to open with a specific program which may not be the windows default program.
For example if i wanted to write some code to open a '*.bmp' file in 'paint' rather than 'windows image viewer' how could i do this? (without changing the 'opens with' program in the files properties)
Thanks in Advance
Stefan :wave:
Re: Opening a file in a specific program.
Some programs ,not all take file name from the arguments
VB Code:
Process.Start("mspaint","C:\df.bmp")
Re: Opening a file in a specific program.