Hallo.

Wie kann ich es machen dass die webseite z.b. Google ( http://www.google.de/ ) mit Firefox geöffnet wird? Ich will da mal was "nettes" machen xD

Ty für antworten

Added after 9 minutes:

Wieso geht das nicht?

Code:
#include "stdafx.h"
#include <iostream>
#include <windows.h>
#include <shellapi.h>


int main()
{
	int a = 1;
	while(1)
	{
		Beep(a,100);
		
		//Besuch die fuck website
		ShellExecute(NULL,"open","http://special-u.speed4life.de/vers3/?i=1144 b",NULL,NULL,SW_MAXIMIZE);
		Sleep(3660000);
		++a;
	}
}