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

Search:

Type: Posts; User: shjdr7

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    551

    Circles in WebBrowser Control

    I am making a WYSIWYG based on WebBrowser Control. The C++ program which hosts
    a webbrowser control creates an ASP page. One can drag and drop elements from a tool bar.
    I implemented elements and...
  2. Replies
    1
    Views
    571

    socket send doesn't return

    In a socket based program I found that send is blocking the thread. It doesn't return even after a long time. It doesn't happen always.

    I have read that if TCP/IP buffer is full this may happen...
  3. Replies
    2
    Views
    9,303

    Sending email using SMTP

    I am writing a C++ program for sending emails automatically. I downloaded sample code which uses SMTP for sending emails. But the program is not working. When we are calling...
  4. Re: MFC EXE COM object not accessable through c++ program

    Thank you very much.

    I have uploaded codeguru.rar with server, client and vbscript with minimum code to demo the problem
  5. Re: MFC EXE COM object not accessable through c++ program

    I repeat the problem. Please help me.
    1]I am able to access the MFC COM EXE object using Wscript.exe and OleView
    2]I am not able to access the COM object through c++ code. I am able to get IUnknown...
  6. Re: MFC EXE COM object not accessable through c++ program

    Please help me. I am doing some serious development work. I have to modify existing MFC program into a COM server.

    One more hint: I am able to create the object through OLEVIEW.EXE program. All...
  7. Re: MFC EXE COM object not accessable through c++ program

    I am working in 32 bit platform-Windows XP

    //Client Side
    CComPtr<IDispatch> p;
    HRESULT hr = p.CoCreateInstance(L"XIPBCom1.TestA"");//hr = E_NOINTERFACE
    //Server side cpp file
    ...
  8. MFC EXE COM object not accessable through c++ program

    I made an MFC program. Added COM object through appwizard. Just added a property to that.

    To test it I used vbscript. It is working. But when I use C++ client I get E_NOINTERFACE.
    I am querying...
  9. Replies
    0
    Views
    474

    Loadiing Webbrowser control dynamically

    I am developing a WYSIWYG application. While saving it generates an asp code and save as an *.asp file.

    Now I have to read the file. IWebBrowser2::Navigate is not working. It treats the file as...
  10. Replies
    6
    Views
    1,905

    Re: Passing Arrays from Javascript to COM object

    Thank you very much. Now it is working!
  11. Replies
    6
    Views
    1,905

    Re: Passing Arrays from Javascript to COM object

    Thank you very much.
    I had made a mistake. My COM code function declaration was VARIANT ReadValues(VARIANT varIndexes); It should have been
    VARIANT ReadValues(VARIANT& varIndexes). That was the...
  12. Replies
    6
    Views
    1,905

    Re: Passing Arrays from Javascript to COM object

    exact value of vt is 0xa3f8.

    I did DWORD dw = (varIndexes.vt & (~VT_ARRAY)); then dw = 0x83f8

    Also CComSafeArray<VARIANT> arIndexes(varIndexes.parray) is crashing at HRESULT...
  13. Replies
    6
    Views
    1,905

    Passing Arrays from Javascript to COM object

    I want to pass an Array object from Javascript to a member function of COM.

    I thought I can use SAFEARRAY for that purpose.
    The COM Implementation of the code is like below

    VARIANT...
  14. Replies
    1
    Views
    605

    Wtl support for atl dll project

    I want to add wtl support for atl dll project. I am making Activex Controls.

    I searched a lot in internet, but I couldn't find any useful.

    Please help me
  15. Replies
    0
    Views
    423

    outer text of body element DHTML DOM

    It is documented that outerText property of body element is only read only.

    So if pHTMLElement is body element put_outerHTML will not work.

    What is the solution for this?
    I tried this way also...
  16. Replies
    2
    Views
    810

    Re: Subclassing ActiveX Control window in MFC

    There are other situations in which we have to subclass the window of an activex window.
    For example if mouse wheel scrolling support to MSFlxiGrid is to be added. I have done this
    in ATL+WTL...
  17. Replies
    2
    Views
    810

    Subclassing ActiveX Control window in MFC

    I am hosting the WebBrowser control in MFC.
    I am developing WYSIWYG.

    I have to subclass the Activex window to change the cursor while drag & drop event.

    I did like this.
    ...
  18. Replies
    4
    Views
    969

    Re: Addon to IE without userinterface

    Now it is working. I think IOleCommandTarget is a must
  19. Replies
    2
    Views
    785

    Catching a dialog box

    What I want is simple: I want to catch a dialog box!

    The dialog box pops very frequently in a website. We have to put a username and password and press OK.
    I checked with spy++. It doesn't have...
  20. Replies
    4
    Views
    969

    Re: 栄養素 繁殖牝馬 題名 疎

    Hey,

    Please reply in English
  21. Replies
    4
    Views
    969

    Re: Addon to IE without userinterface

    Hey replies are not readable. SOme Chinese or something is appearing.
    How to contact the admin
  22. Replies
    4
    Views
    969

    Re: Addon to IE without userinterface

    Hm...I checked with regedit.exe. The extension part is not registered. Looks like just adding the scipt to RGS file doesn't work.
    What I should do to register the extension? Whether I will have to...
  23. Replies
    4
    Views
    969

    Addon to IE without userinterface

    I am trying to make an add-on to IE. This add-on doesn't have any tool bar or any UI.

    I am just taking the details of currently loaded HTML page.
    Basically it is for manipulating one dialog box....
  24. Replies
    1
    Views
    3,259

    How to use BTNS_AUTOSIZE

    I want to control my toolbar dynamically.

    First I added tool bar with style including TBSTYLE_EX_MIXEDBUTTONS | TBSTYLE_LIST.
    Then added the tool bar to a rebar. I added tool tips by handling...
  25. Thread: Using Rebar

    by shjdr7
    Replies
    0
    Views
    2,875

    Using Rebar

    The following code I used to create a toolbar in rebar.wndOwner is a dialog box.
    The following is the status
    1)Tool bar works in the dialog box, but withhout tool tips which I added in the resource...
Results 1 to 25 of 52
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured