Search results for query: *

  • Users: i73
  • Order by date
  1. I

    Getting the process parent that started a process / task?

    Thanks so much for the reply, I was looking at ManagementClass before, though it just lists the processes that are currently active, correct me if I'm wrong but this won't return the process that started the async task, will it? I don't even know if the functionality I'm looking for exists...
  2. I

    Getting the process parent that started a process / task?

    I'm starting up a Async task and I need to be able to shut down the calling task then re-open it once I've finished with the "Child" process. I'm thinking of a command line Fork, so I have not found out a way to achieve this but I want to be able to get the parent 'Process' who started the task...
  3. I

    OLE interop issue

    Alright, stay with me here, I have a few things I need to explain. I'm trying OLE in C# currently for Photoshop CS6, late binding works perfectly by creating an instance of the application: dynamic app = Activator.CreateInstance(Type.GetTypeFromProgID("Photoshop.Application", true))...
  4. I

    System Threading Timer not continuously working

    Hello, I am running into a problem with my Task, whenever my computer either sleeps or enters hibernation the threading task ends and will not continue until I run my program again, is there a way I can get this to work even when the system halts? var timer = new...
  5. I

    I am testing the size of a image and I need to have the same size across all monitors

    I have an image that needs to stay 5 inches no matter what the resolution is on their monitor, could be HD could be 4k. <br> I am forgetting the formula to allow me to keep the size of a image the same across all devices. I am getting the screen bounds and I have the image :<br> <br> <br><font...
Back
Top Bottom