ok so i have used ShellExecute() before but with a specific value eg. "http://www.facebook.com" but now i want this program to be more flexible and allow the user to put the website he wants to.
the thing is i made a string like this
String ^URL;
ShellExecute(NULL,"open",URL,NULL,NULL,SW_SHOWDEFAULT)
this gives me an error saying cannot convert system::string into LPCSTR.
btw i am using windows forms applications, how can i fix this? D:
thnx :D