how ??

  • Thread starter Thread starter patelviren1984
  • Start date Start date
P

patelviren1984

I want to run one perticular executable from Harddisk (installed
lincenced application )

so there is entry of path where that application is installed

NOW HOW CAN I LOCATE THAT PATH ??(USING VB.NET)
 
Hi PatelViren,

1. Next time use a brief but descriptive subject line, which describes
the problem.
2. Give more details about your question and sample code if applicable.
3. It often proves very helpful, if you can explain what you are trying
to accomplish and what is the current situation.
4. For heaven's sake, learn to spell.

As for your answer, (as far as I could ascertain the meaning of the
question) :

Try the System.IO.Path class. Some of it's shared properties should
prove useful.

Regards,

Cerebrus.
 
If I got what u mean , use Process.Start(string path) where the path variable
is the ful path to the exe you need to launch.
 
Back
Top