I need just to have an ie control window in my dialogbox.... something like the popup who appear when you login into messenger chat.... I have a simplest win32 console application, without MFC. I maked CreateDialog, to open a dialog box window, from a dialog resource. In that dialog i put an dll control of Microsoft Web Browser Object, from controls. How to connect to that object and tell him Navigate2 ? (with mfc is very simple is automatticaly link a m_spBrowser variable....) Adrian Bacaianu
Adrian Bacaianu
Posts
-
Microsoft Web Browser Object into DialogBox, without MFC? -
Microsoft Web Browser Object into DialogBox, without MFC?I need just to have an ie control window in my dialogbox.... something like the popup who appear when you login into messenger chat.... I have a simplest win32 console application, without MFC. I maked CreateDialog, to open a dialog box window, from a dialog resource. In that dialog i put an dll control of Microsoft Web Browser Object, from controls. How to connect to that object and tell him Navigate2 ? (with mfc is very simple is automatticaly link a m_spBrowser variable....) Adrian Bacaianu
-
DCOM over COMYes, was working, many thanks! The speed isnt so good but that it is... Adrian Bacaianu
-
DCOM over COMI have a COM+ component. Until now i have only clients hosted into the same computer like my business component. Now is needed to have clients on other computers, over the net, who must access data from my COM+ component. The way is to deploy a DCOM component and make calls from clients to that DCOM. But i dont want to copy the code from my COM+ component into the new DCOM component. I know is possible to make a com to be like an exe DCOM, but i dont know how... Know somebody how ? Adrian Bacaianu
-
COM+ singleton ?Hy everybody, Please help me with an ideea. The problem is simple, but the solution... In fact, i need to have only one permanent instance of an ATL COM+ object (or more but only persistent public data members), and 3 or more clients who must connect at this COM object to get and put data. The clients are C++ who connect with CreateInstance and ASP who use CreateObject. The problem is at each new CreateInstance of a new client, in COM+ appear a new instance of my COM+ object, even i use DECLARE_CLASSFACTORY_SINGLETON. Even if i use the both threading model, in any apartments, the public data look to be the same only to C++ clients, a new ASP instance will create a new object with new different public memebers !!! Adrian Bacaianu