Hey,can anyone tell me how to invoke a new application/software using c++ or visual c++.
Also, gor interfacing a gui with my c++ code,should i go for vc++?
mehak gupta 0 Newbie Poster
Recommended Answers
Jump to Posthow to invoke another process is operating system dependent. fork() creates another process from the currently running process, it does not invoke a new process that is not currently running -- and its only supported by *nix machines.. system() as suggested by dave is supported on all (or most) operating …
Jump to PostThere are a number of ways to start another process. system() is just one of them. On MS-Windows you can also call CreateProcess(), ShellExecute(), and spawn(). The all do basically the same thing, but CreateProess() gives your program a lot more control over the process being executed than the other …
Jump to PostIf you have the Professional version or better then you could use MFC (unmanaged code) or even Windows Forms (CLR managed code)
We've already covered invoking other application, so I won't repeat myself and others.
Databases. If it's an SQL compliant database like MySQL, Access, Oracle, Sybase and …
All 10 Replies
daviddoria 334 Posting Virtuoso Featured Poster
tundra010 1 Light Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
mehak gupta 0 Newbie Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
mehak gupta 0 Newbie Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
tundra010 1 Light Poster
harris21 0 Newbie Poster
mehak gupta 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.