Execute

Started by
4 comments, last by Pillejunior 21 years, 4 months ago
How do you start an executable in C++ Is there a shellexecute just as in Visual basic Thanx in advance
Advertisement
ShellExecute() is part of the Win32 API. It''s not VB specific.

So in short, yes, you can use ShellExecute() in a windows executable programmed in C++.
the C equivalent to that would be system(const char* cmdline)
daerid@gmail.com
ShellExecute( ) works just fine in c
How do i read binary files one binary at a time in C

thanx in advance
if you mean one byte at a time just use something like

char b;
read(fp,&b,1);

I might have got some of those arguments the wrong way round cause I haven''t done c i/o for a long time

This topic is closed to new replies.

Advertisement