Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. KenFalk

    Stopping a Process

    I started the process not with the name of an app but rather with the name of a file supplied by the user so I don't know the name of the app that is used unless I can retrieve it from code. -Ken
  2. KenFalk

    What is "Object reference not set to an instance of an object"

    In general "Object reference not set to an Instance of an Object means the following: Reference type variables store the address of an object (a 32 bit number that represents the actual memory location where the start of the object is stored) When you create a variable for a reference type...
  3. KenFalk

    Stopping a Process

    Thanks for the reply, When I start the process, I do not know the type of the file and therefore do not know the application used to open the file. What is "MyApp" supposed to be? -Ken
  4. KenFalk

    Stopping a Process

    I have found that I can execute any file with the following code: Dim oProcStart As New ProcessStartInfo oProcStart.FileName = "C:\SomeFileOfUnknownType" Process.Start(oProcStart) Of course, the program that runs will be the program that is associated with the extension of the file. At some...

Part and Inventory Search

Back
Top