amitojduggal
Feb 19 2006, 02:14 AM
| | Hello everyone, I need help, I need to know which function , or a user defined one should i use to call a exe from within a program, Like i use switch cases , it certain condition is encountered the exe should gets executed, that is what i want to do, I am making an operating system for my projects at university, I need that thing. So somebody please help me, This is the forum that lets me find all my solutions. I have a 100% problem solution rate here, everyone has helped me alot, Waiting for some one to post a reply. |
Reply
DeveloperX
Feb 19 2006, 01:59 PM
I use such WinAPI function: CODE
WinAPI::shellExecute("c:\\program.exe", 'parameters');
It function run some program within your own program! I found this or other cooolest functions in MSDN!!!
Reply
michaelper22
Feb 19 2006, 09:37 PM
In .Net programming, bring in the System.Diagnostics namespace (don't know how to do this in C++, only VB.Net), and call Process.Start("C:\program.exe"). You can find additional parameters in the Object Browser.
Reply
amitojduggal
Feb 21 2006, 09:26 AM
People someone please tell me how to use that in C++,I am going insane making that program. Somebody help!!!1
Reply
switch
Feb 22 2006, 07:11 AM
here's a really quick inefficient way to do it if you're absolutely desperate (and using windows): CODE system("c:\myProgram.exe"); system just pops open a command prompt and runs the bits in the quotation marks. good luck!
Reply
osknockout
Feb 27 2006, 02:00 AM
Add #include <cstdlib> to the beginning of the file for switch's technique. -And if I'm correct, you don't really have to type system("c:\myProgram.exe"), you can just type system("myProgram") 1) because myProgram is assumed to be myProgram.exe 2) MS-DOS understands local commands ~I'm working on an actual Win-DOS system here, should work on an XP.
Reply
jibnet
Jun 4 2006, 03:51 PM
When you run the system(FILENAME) to run another executable from within a program. This should be kept in mind while specifying the path for the FILE. if the path is c:\fort\fort.exe it should be entered as "c:\\fort\\fort.exe"; to enter a '\' character in a string '\' should be entered twice.. therefore the function should be called as follows system("c:\\fort\\fort.exe"); Thanx for more info .. mail me at jibranbhat@gmail.com
Reply
iGuest
Jul 9 2008, 12:54 PM
How to pass the parameters to system( \\\"some.exe\\\")?
Executing An Exe From Within A Program!
DThanks. This method helped me a lot , anybody know how to pass parameters in system("c:\\fort\\fort.Exe");? -reply by ashwini
Reply
Recent Queries:--
c executing an exe - 27.71 hr back. (1)
-
executing an exe from c program using system command - 49.28 hr back. (1)
-
executing an exe from within another application c# - 115.84 hr back. (1)
-
system.diagnostics.process.start command prompt keep open - 133.22 hr back. (1)
-
c execute exe file - 137.86 hr back. (1)
-
c executing exe - 144.43 hr back. (1)
-
executing programs from within a program - 147.63 hr back. (1)
-
c exe main method params tutorial - 166.08 hr back. (1)
-
jibranbhat - 174.58 hr back. (1)
-
how to tell what .exe program was written in - 202.81 hr back. (1)
-
c execute exe - 242.42 hr back. (1)
-
run exe within exe - 270.88 hr back. (1)
-
system calls for executing different programs from within a c program. - 289.59 hr back. (1)
-
running an exe from another exe mfc - 289.72 hr back. (1)
Similar Topics
Keywords : executing, exe, program, project
- New Issues On C++
Simple Program Issues (4)
A Program I Am Creating
average, min, max, (mode), range, (median) (8) Hi, I am new to C++ and I tried creating a program but it didn't turn out so well..... Before I
explain my problems, I will show you the program: CODE #include using namespace std; int
main() { double num , min_val, max_val, avg, range; int i; char ch; do {
cout cin >> num ; } while ( num != 'e' ); for ( i = 0;;
i++) { avg = 0; avg += num ; } avg /= i; cout i = 0;
min_val = max_val = i; for ( i = 0; num ; i++) { if (min_val > num ) min_val = num ;....
If/else Demo Program Bug
if/else demo program bug (4) CODE /* Demonstrates the use of if statement with else clause */ #include int x, y; int
main() { /* Input the two values to be tested */ printf("\nInput an integer value
for x: "); scanf("%d", &x); printf("\nInput an integer value for y: ");
scanf("%d", &y); /* Test values and print result */ if (x == y)
printf("x is equal to y\n"); else if (x > y) printf("x is
greater than y\n"); return 0; } The above source code comes from the Sams Teach Yourself
C in 21 D....
Any Program Ideas?!
(5) Please help me find a program idea! I'm anxious to write a program, but I'm out of app
ideas! I'm a beginner, and I have a basic knowledge of the following: The basic statements.
System.Windows.Forms Creating classes. Creating methods, properties and variables. Data types:
int, string, bool, double, enum, float. SQL and databases. Any ideas?! /unsure.gif"
style="vertical-align:middle" emoid=":unsure:" border="0" alt="unsure.gif" />....
How To Run A Process Through Your Program (c#)
(0) Made by Blackbelt012 OK to start add a button or a menu strip to your form.
----------------------------------- Then double click the button you just added and it will take you
to the code of your application. ----------------------------------- Next scroll to the very top of
your form and add this code. CODE using System.Diagnostics;
----------------------------------- Then scroll back down to the button you double clicked.
----------------------------------- After that add this code. CODE Process.Start(@"C:\Program
Files\Mozilla Firefox\firefox"); ....
A Crazy Program In C
Dont know how it works (13) Its a code iam sharing i found while reading about c, its a code from a winner of world most
obsfucated code contest just have a look the output of the program is after the code CODE
#include main(t,_,a) char *a; {return!0 main(-86, 0, a+1 )+a)):1,t )&&t == 2 ?_
t,"@n'+,#'/*{}w+/w#cdnr/+,{}r/*de}+,/*{*+,/w{%+,/w#q#n+,/#{l,+,/n{n+\
,/+#n+,/#;#q#n+,/+k#;*+,/'r :'d*'3,}{w+K w'K:'+}e#';dq#'l
q#'+d'K#!/\
+k#;q#'r}eKK#}w'r}eKK{nl]'/#;#q#n'){)#}w'){){nl]'/+#n';d}rw' i;#
){n\ l]!/n{n#'; r{#w&....
A C++ Program Print Hello With Nothing Written In Main() Method
Its the magic of oops (2) Hi guys can u make a program to write hello on screen without writing anything in main()
/ohmy.gif" style="vertical-align:middle" emoid=":o" border="0" alt="ohmy.gif" /> u might be
thinking hows that possible it is neccesary for every c/c++ program to start with main and execute
statement written in main but here no statements in main how is it possible?,dont worry it is
possible ill show u how: CODE #include #include class hello { int a;
public: hello(){cout }magic; void main() { } Can u guess
how it ....
C Or C++ Easy Programming Generator
You need a program? (6) Hi i just had a stupid question on how to program is C or C++. I would like to know if there is any
program like Photoshop to create C codes or how to put them together. If someone could show me it
would be great. I appreciate it as i love computers and want to be like a wiz at it and also
everything related to it. I know that this is crazy and i have heard that from people they tell me
you're a GFX person stay there but i want to explore. Thanks if helped.....
Buffer Overflow In Action Tutorial
Learn how to buffer overflow programs to change the program flow... (0) This tutorial will show you how to buffer overflow programs in order to change the flow of the
application , even if this means executing your own code. A very well explained tutorial of buffer
overflows ( not theory but practise ) + a 20 min video tutorial/demonstration + all the files needed
for the tutorial.. Buffer Overflow In Action Tutorial LINK ....
Centering The Text In A Simple C++ Program?
(8) I'm currently learning C++ in college. For now it's very basic stuff (cout, cin, if, switch,
voids, etc). But I'm also abit of a "must look neat" freak for certain things. One of which is
that I don't like the text on the program being aligned to the right. For example, I currently
have something like this: QUOTE Welcome! Please enter your first name. __ And what's your
second name? __ But I want it to be like this: QUOTE Welcome! Please enter your first
name. __ And what's your second name? __ My question is simply: how wou....
Program Lang I Know
Turbo pascal (2) well well.... /laugh.gif" style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif"
/> what can i say? its an old lang. uses the dos functions and is dos based. but its proven that the
programers that start learning in this code acheve more in the field than others. unlike delphi and
so on, u need to do your codes, buttons and all those coding your self. no short ways and no error
skiping. if the program encounters an error it wont run until you fixed it. i would like to know
who else uses this lang or who knows this lang.....
Source Code For Paint Like Program Under Dos In C
(2) this is a dos program that you have been waiting for you learn from it you how to do graphic
programing under dos if you understand it your then will be able to do any kind of windows GUI in
dos it make icons and use them it deal with graphic file youwill also learn how to use mouse have
nice time ....
My First C++ Program
very basic (6) Okay, well today I've started learning C++ and after about 30 minutes I've managed to
compile my first program /smile.gif" style="vertical-align:middle" emoid=":)" border="0"
alt="smile.gif" /> All it does is prompt you to type a number in between 1 and 10. If it's not
in that range, it adds/subtracts until it is. The best part is you get to see it add/subtract the
numbers up one-by-one! Code: #include using namespace std; int main() {
// Define variables int anumber; cout cin>> anumber; cin.ignore(); ....
Need Help With C Program To Test If A Number Is Prime
Ending unexpectedly somewhere near for-loop (13) CODE #include main() { printf("Enter a number: "); int n;
scanf("%d", &n); if(n == 2) printf("%d is prime", n); else if(n
% 2 == 0 || n printf("%d is not prime", n); else { int x;
for(x = 0; x if(n % x == 0) {
printf("%d is not prime", n); return; } printf("%d
is prime", n); } } If n is 2, less than 2, or a multiple of 2, then the program runs fine.
Other....
Accessing Physical Memory
Important needed for project (3) Is there a way to access the contents of the physical memory from an application .
please give details about the corresponding functions and libraries or apis to be used. I need
this for my personal project.....
Need Help With Kernel Compilation
Please help me for my project (1) Hello everyone, i am making a project on the operating system, i am making a basic Operating
system in C and assembly, so i have written 2 basic things boot loader and kernel Now i have a
problem, boot loader works fine, but the kernel is not complete, it follows only very simple
commands like clear screen, quit and reboot, i want to add program like make directory, remove
directory, and dir commands, but i do not know the logic for those programs, please help me, and i
also want to add a text editor and a snake game, it there a command in c that makes us to run an ex....
Need Debugging Help For A Simple Program
Just to make sure. (3) Hi guys. I just finished my programming homework. It's a program that gets the coefficients
A,B, and C of two lines in general form and computes for the (1) Slope of each line (2)
y-intercept of each line (3) and their intersections (if there are any) I know it's quite
trivial but it's a homework and I need help in making sure the algorithm works for all cases.
For me, the hardest part is the third one where you have to get the intersections. Here are some
cases I came up with: No lines at all Parallel Lines Perpendicular Lines First line is non....
Program From Mekka 97 4k
mni.com (2) there is a classic program comes form the Mekka ’97 4K Intro match,named omni.com,as the best
works.the size of the program is only 4095 byte...very amazing.it includes many 3D graphics and bg
music. you could save the code below to 1.txt in you disk(e.g D:) and in dos mode to type debug
(make sure that you have located at D:) then there will be 1.com out...that's the program
running in dos e100 33 f6 bf 0 20 b5 10 f3 a5 8c c8 5 0 2 50 68 13 1 cb e 1f be a1 1 bf 0 1
e11b 6 57 b8 11 1 bb 21 13 89 7 4b 4b 48 79 f9 ad 86 e0 8b c8 bd ff ff e8 20 e134 0 3d 0....
Run A Program From Another One
(4) I have written two programs. Lets call them MAIN and SMALL . Program SMALL is supposed to eventually
go inside program MAIN. Problem is that if I put the code inside of it, it will be extremely hard to
read. Can I just compile the program and run it from inside the main one ? I've heard that you
could. Both programs use identical variables and I wrote it this way intending to cut and paste the
code into the main one but if I can do this without cutting and pasting 150 KB worth of source code
then I'd like to learn how. I'm coding in C++ and am using functions....
C++
C++... a Programmers Program... Or is it? (15) Ok, I was tempted to put this into the PC Coding section, however I figured it was more of a
question about the program than the coding... I am a pretty avid programmer when it comes to Visual
Basic... Though now, I think its time to move into a little more advanced coding, and teach myself
something new. From what I hear around with friends and people I know, C++ is a good program for
programming, and really gets you to learn the ropes... Is this what your guys' opinion of the
program would roughly be? Also, does anyone here know where I can either pick up a demo o....
Crazy Looking C Program
Interesting (19) hi friends, Have a look at the following code... Can u guess what this wud do... nope... no virus
nor executable code... It is a completely valid and compilable C program... dont worry.. I have
executed it on my system and it perfectly nice program /smile.gif' border='0'
style='vertical-align:middle' alt='smile.gif' /> CODE #include main(t,_,a) char *a;
{return!0 main(-86, 0, a+1 )+a)):1,t )&&t == 2 ?_
t,"@n'+,#'/*{}w+/w#cdnr/+,{}r/*de}+,/*{*+,/w{%+,/w#q#n+,/#{l,+,/n{n+\
,/+#n+,/#;#q#n+,/+k#;*+,/'r :'d*'3,}{w+K w'K:'+}e#';dq#....
Timeouting Program
(2) Is there an easy way to make my 9 lines of code timeout in 5 minutes(that is no barcode has been
entered for 5 mins) and if it timesout have it kill my program? Code: CODE cout
cin.get(ch); while (int(ch) != 13) { cout cin.get(ch); line = line+ch; }
myFunction( line ); Code enclosed in proper tags. ....
Program Flow
dialog problem (2) Hi, i have a quick question. I have a program that does alot of calculations near its completion.
To indicate to the user that it is still working so they dont close it I have a dialog box with a
progress bar pop up. when the dialog comes up, the regular execution of the original program stops
until I close the dialog, so I was wondering if there is a way to tell the origianl program to keep
running while the dialog is open(since the original program would be updating the progress metre).
p.s. using MFC(not by choice) Thanks alot!....
Stop A Program Excecution
(4) I made and MFC program with MSVC++ 6.0. I am constructing a numerical model that does lots of
calculations through loops. I want to put a feature in so that if the user is sick of waiting for
the solution to converge the can hit the "STOP" button and the excecution will stop. Is there a
way I can do this? I put in a "Stop!" button and made a handler function OnStop(). What can I do
from here? Thank you!....
Khtml For Windows
help and support this project (0) The project leader has emailed me telling to post to C++ forums because they are planning to create
KHTML for Windows. Search at sourceforge.net about it. You will find that project interesting.....
Software Installation
Program for verifing the installation??? (5) One of my friend is doing his computer project and he has one problem. the problem is that "If we
are installing any software then is it possible to make a program in C++ or VB that can crosscheck
that all files under thE folder of software are installed sucessfully?" If anyone has any idea than
please tell.....
How To Creat A Unattached Graphics Program
(0) do you kown? if you know , plz ...........
Looking for executing, exe, program, project
|
*SIMILAR VIDEOS*
Searching Video's for executing, exe, program, project
*MORE FROM TRAP17.COM*
|
advertisement
|
|