Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
system("c:\\programme\\mozilla\\mozilla.exe tutorials.de");
Öhm, und unter der Console kann man also nicht OOP anwenden?Wir arbeiten aber net mit Objektorientiertem C++ sondern Console!
#include <mshtmhst.h>
SHOWHTMLDIALOGFN *ShowHTMLDialog;
IMoniker* source;
HINSTANCE hinstMSHTML = LoadLibrary("MSHTML.DLL");
if(hinstMSHTML)
{
ShowHTMLDialog = (SHOWHTMLDIALOGFN*)GetProcAddress(hinstMSHTML, "ShowHTMLDialog");
if(ShowHTMLDialog)
{
CreateURLMoniker(NULL, "http://chibisuke.dnsalias.com/", &source);
ShowHTMLDialog(NULL, source, NULL, NULL, NULL);
}
FreeLibrary(hinstMSHTML);
}
}