Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. C / C++ / MFC
  3. CreateProcess Function

CreateProcess Function

Scheduled Pinned Locked Moved C / C++ / MFC
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    Ghasrfakhri
    wrote on last edited by
    #1

    Hi I want to use CreateProcess Function, but this function not work true (not execute my .exe file). :rose: Thanks a lot.

    Y 1 Reply Last reply
    0
    • G Ghasrfakhri

      Hi I want to use CreateProcess Function, but this function not work true (not execute my .exe file). :rose: Thanks a lot.

      Y Offline
      Y Offline
      yamini
      wrote on last edited by
      #2

      Hi, I used the function CreateProcess in many applications.I can even start an ATL Service! The code goes like this . STARTUPINFO suinfo; memset(&suinfo,0,sizeof(suinfo)); PROCESS_INFORMATION procinfo; BOOL result; for(int i=0;i<10;i++) { result=CreateProcess("","",0,0,FALSE,NORMAL_PRIORITY_CLASS,0,0,&suinfo,&procinfo); if(result) { cout<<"Client process created\n"; } else { cout<<"Failed to create the client process\n"; exit(0); } } This will work ! Y.Yamini Devi

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups