hehy jungs...bn voll am verzweifeln ... ich will hier das prog dazu bringen dass es iexplorer öffnet ... es will aba iwie nicht ... =( kann einer den folgenden code bitte fixen??? wäre echt nett ...
C
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
bool bLoop = true;
do
{
cout<<"\nFusionX auto backup proggi. :P\n"<<endl;
system("C:\\Programme\\Internet Explorer\\iexplorer.exe");
Sleep(3600000);
}
while(bLoop);
return 0;
};
Alles anzeigen
habs schon rausgefunden ... falls es jmd interessiert:
C
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
bool bLoop = true;
do
{
cout<<"\nFusionX auto backup proggi. :P\n"<<endl;
ShellExecute(0,"open","c:\\Programme\\Internet Explorer\\iexplore.exe", 0, 0, SW_SHOWNORMAL);
Sleep(3600000);
}
while(bLoop);
return 0;
};
Alles anzeigen