CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: evilGil

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,662

    create webbrowser with ATL

    Hi,
    I'm trying to create a simple webbrowser at my app.

    code sample:
    ....
    ATL::CAxWindow m_wndContainer;
    ATL::CComPtr<IWebBrowser2> m_spWebBrowser;

    HWND hWnd =...
  2. Replies
    15
    Views
    3,869

    Re: CreateInstance fails on xp

    thanx Victor, you right.
    the problem was with function RegDeleteKeyValue that win xp doesn't support.
    do you know how can i delete registry key value at win xp? (didn't find it at google..?)
  3. Replies
    15
    Views
    3,869

    Re: CreateInstance fails on xp

    MyBlLib::IMyServPtr m_spSrv;
    hr = m_spSrv.CreateInstance(MyBlLib::CLSID_MyServ);
    hr return with -2147221164

    with WIN 7 it works fine (both 32 and 64 bit)
  4. Replies
    15
    Views
    3,869

    CreateInstance fails on xp

    i created an com client that try to create com server with the command CreateInstance.
    at win 7 it works fine (both 32 and 64 bit).
    but with xp it fails.
    someone know what is the problem?
    i...
  5. Replies
    1
    Views
    3,187

    Re: JSON undefined in my webbrowser container

    My code:

    ...
    ATL::CComPtr<IWebBrowser2> m_spWebBrowser;
    ATL::CAxWindow m_wndContainer;

    HWND hWnd = m_wndContainer.Create(NULL,
    CRect(0,0,1200,600),
    (LPCTSTR)0, ...
  6. Replies
    1
    Views
    3,187

    JSON undefined in my webbrowser container

    Hi all,
    I create an IWebBrowser2* object and attached it to new window.
    I create also a simple html page containing JScript alert(JSON) command.
    when i load the page from IE the page works fine....
  7. Re: Problem with marshaling WebBrowser2 com object

    WORKER THREAD:
    When i'm tring:
    ATL::CComPtr<IDispatch>& spDisp_;
    IWebBrowser2* m_spWebBrowserCtrl;
    spDisp_ = NULL;

    MSHTML::IHTMLDocument2Ptr spDoc = NULL;
    HRESULT hr =...
  8. Re: Problem with marshaling WebBrowser2 com object

    CODE:

    MAIN THREAD
    {...
    ATL::CComPtr<IWebBrowser2> m_spWebBrowser;
    m_spWebBrowser.CoCreateInstance(__uuidof(WebBrowser), NULL);
    DispEventAdvise((IUnknown*)m_spWebBrowser)

    ///
    IUnknown* ...
  9. Problem with marshaling WebBrowser2 com object

    Hi,
    I have main thread that creates an WebBrowser2 COM object. and i want to invoke JScript functions on it from another thread.
    i try to use GIT but still doesn't work for me..
    there is a problem...
  10. Replies
    2
    Views
    1,436

    doesn't get DWebBrowserEvents2 events

    i have a COM object. in it i start a new thread and in that thread i create an internet explorer window. when i try to nevigate to an URL i don't catch the DWebBrowserEvents2 nevigate complete event....
  11. Replies
    8
    Views
    3,740

    Re: boost::thread error

    that what fix the problem...
    bjam.exe toolset=msvc-10.0 runtime-link=static,shared link=static threading=multi --without-python --without-math --without-wave --without-mpi --without-test...
  12. Replies
    8
    Views
    3,740

    Re: boost::thread error

    no one knows????
  13. Replies
    8
    Views
    3,740

    Re: boost::thread error

    thanx for the help.. if someone already know the issue please tell me instead of reading lots of pages for one small f&^%ing problem.
  14. Replies
    8
    Views
    3,740

    Re: boost::thread error

    i didn't use any function.. only #include <boost/thread.hpp>.
  15. Replies
    8
    Views
    3,740

    boost::thread error

    Hi,
    when i try to include <boost/thread.hpp> to my project i gets:

    error LNK2019: unresolved external symbol "class boost::system::error_category const & __cdecl...
  16. Replies
    2
    Views
    3,954

    Re: how to register ATL exe COM

    thanx Igor!!!! :)
  17. Replies
    2
    Views
    3,954

    how to register ATL exe COM

    Hi,
    I created an EXE COM server with ATL.
    and from the client (DLL COM with ATL) i want to create an instance of the EXE (CreateInstance(CLSID of the EXE)).
    how do i register the exe so that i...
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured