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

Search:

Type: Posts; User: MGS76

Page 1 of 4 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    2
    Views
    1,633

    Re: OLE Word automation - Problem with table

    Hi,

    I user VC 6.0 and Word XP. And I can't finde the SetPreferredWidthType function.

    Michael
  2. Replies
    2
    Views
    1,633

    OLE Word automation - Problem with table

    Hello,

    I want to change the width of a table with ole. What I wanna do is the action from this vba-makro:
    Selection.Columns.PreferredWidthType = wdPreferredWidthPercent
    ...
  3. Replies
    3
    Views
    678

    Formated Tooltiptext

    Hi,

    I want to create a formated tooltip like that from Trillian:

    Thanks for help

    Michael
  4. Replies
    1
    Views
    3,427

    Re: Word automation without OLE

    I tried this:

    #pragma warning (disable:4146)
    #import "C:\Programme\Microsoft Office\Office\MSO9.DLL"
    #pragma warning (default:4146)
    #import "C:\Programme\Gemeinsame Dateien\Microsoft...
  5. Replies
    1
    Views
    3,427

    Word automation without OLE

    Hello,

    I write a ISAPI-dll for IIS. I want to create word-documents on the server for download.
    OLE don't work with ISAPI. How can I create word-documents?

    Thanks

    Michael
  6. Replies
    10
    Views
    954

    Re: Create OLE in WebExtension

    Hi,

    I still haven't fixed the problem. I tried to import msword.olb, but had errors.

    Have you a little exsample for me?

    Thanks

    Michael
  7. Replies
    0
    Views
    484

    Sending EMail from IIS-Extension

    Hi,

    I write a ISAPI-server-extension. How can I send a email from there?
    I read some threads here, but they didn't realy help me.

    Thanks

    Michael
  8. Replies
    10
    Views
    954

    Re: Create OLE in WebExtension

    OK, thanks. I'll try.

    Michael
  9. Replies
    10
    Views
    954

    Re: Create OLE in WebExtension

    It is a ISAPI-Extension dll extends CHttpServer.
  10. Replies
    10
    Views
    954

    Re: Create OLE in WebExtension

    I am Admin on this server, not User.
  11. Replies
    10
    Views
    954

    Re: Create OLE in WebExtension

    Is it possible to get the rights?
  12. Replies
    10
    Views
    954

    Create OLE in WebExtension

    Hi,

    I want to create an Excel OLE-Object from my webextension.

    When I call m_app.CreateDispatch("Excel.Application") I get an Exception.

    It works fine from a normal dll.

    Thanks
  13. Replies
    3
    Views
    1,237

    Re: Problems with SDK

    Hi,

    I start from scratch. I never did write a programme for pocket pc.

    Greatings

    Michael
  14. Replies
    3
    Views
    1,237

    Problems with SDK

    Hi,

    I have installed embedded VC 4.0 and the SDK für Pocket PC 2003. That worked fine, but I have to write software for Pocket PC 2002. So I uninstalled the SDK and installed the 2002, but then...
  15. Replies
    5
    Views
    958

    Re: How to put CComboBox and CButton in one?

    That is excactly what I did. The problem ist that I must call create on the class. And there I have to give the classname. If I do with "BUTTON" then the button works, if I do it with "COMBO" the...
  16. Replies
    5
    Views
    958

    Re: How to put CComboBox and CButton in one?

    Hi,

    I want to create a control as a combination of a CComboBox and a CButton (see attachment).
    I need it for a dynamic created view in wich I must know the ID of every control.
    Now I took...
  17. Replies
    5
    Views
    958

    How to put CComboBox and CButton in one?

    Hi,

    I need to get a CComboBox and a CButton by one ID. So I want to put them together in one class derived from CWnd.
    I did that with two buttons, no problem create the class with...
  18. Replies
    6
    Views
    983

    Hi, I nead it e.g. for CTRL-S -> Save or ESC...

    Hi,

    I nead it e.g. for CTRL-S -> Save or ESC -> Exit the dialog.

    I did it that way:

    and it works fine.
  19. Replies
    0
    Views
    475

    OLE - Word pagecount

    Hi,

    how do I get the number of pages of a worddocument opened by ole?

    Thanks

    Michael
  20. Replies
    6
    Views
    983

    Hi, thanks a lot. I think it could work that...

    Hi,

    thanks a lot. I think it could work that way - but its not the best way.

    Michael
  21. Replies
    6
    Views
    983

    KeyListener and JDK 1.4

    Hello,

    I use a JDialog and added a KeyListener like that:



    this.addKeyListener(new java.awt.event.KeyAdapter()
    {
    public void keyPressed(KeyEvent e)
    {
  22. Replies
    0
    Views
    513

    Calline function in Excel - No Return?

    Hello,

    I call a function in a excelsheet by ole like that:

    COleVariant varReturn = app.Run(COleVariant(COleVariant((LPCTSTR) strMakro)), var1, covOptional, ...);

    After the call the varReturn...
  23. Replies
    5
    Views
    978

    with Close() and Open() instead of MoveNext() it...

    with Close() and Open() instead of MoveNext() it works, but is very slow.
  24. Replies
    5
    Views
    978

    DAO 3.6 delete problem

    Hi,

    I use the following code with dao 3.5 and dao 3.6. It works with 3.5, but with 3.6 at the second deletion a exception is thrown (from DoFieldExchange a String deletion fails)

    ...
  25. Replies
    1
    Views
    613

    Problem with OLE (Word)

    Hello,

    I get from one document the content with GetFormattedText and set it in an other with SetFormattedText.

    I use


    LPDISPATCH dp = doc1.GetFormattedText(); ... doc2.SetFormattedText(dp);
Results 1 to 25 of 90
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured