Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by senpuppy

  1. senpuppy

    PLS HELP : CreateInstance (__uuidof(SHDocVw::ShellWindows) failed

    Hi, This following code in a console application: CoInitialize(0); HRESULT hr; SHDocVw::IShellWindowsPtr spSHWinds; hr = spSHWinds.CreateInstance (__uuidof(SHDocVw::ShellWindows)); ====> Returns 0x0x80040154 - Class not registered. Can someone please help me why I am getting this error...
  2. senpuppy

    PLS HELP : CreateInstance (__uuidof(SHDocVw::ShellWindows) failed

    Hi, This following code in a console application: CoInitialize(0); HRESULT hr; SHDocVw::IShellWindowsPtr spSHWinds; hr = spSHWinds.CreateInstance (__uuidof(SHDocVw::ShellWindows)); ====> Returns 0x0x80040154 - Class not registered. Can someone please help me why I am getting this error...
  3. senpuppy

    PLS HELP : CoCreateInstance on IE object failed on XP/SP2

    Hi, Here is the part of the EXE code: if (FAILED (CoInitialize (NULL))) { return FALSE; } ... ... HRESULT hr; IWebBrowser2* pWebBrowser = NULL; hr = CoCreateInstance (CLSID_InternetExplorer, NULL, CLSCTX_LOCAL_SERVER, IID_IWebBrowser2, (LPVOID*)&pWebBrowser)...

Part and Inventory Search

Back
Top