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

Search:

Type: Posts; User: scott meyer

Page 1 of 14 1 2 3 4

Search: Search took 0.54 seconds.

  1. Modify MDI app using CHtmlView child to add splitter?

    I have a large MDI app which uses CHtmlView-derived child windows.

    I'd like to change to a splitter-type child window, still using a CHtmlView for the right pane.

    How can I convert this...
  2. Problem with toolbar in ActiveX control - sometimes displays behind parent window

    I'm using tooltips in one of my ActiveX controls. I do it per KB article #141871.

    Works fine, except:
    - The first time a web page is opened with this control, the tooltip works fine
    - If you...
  3. Replies
    3
    Views
    998

    mmm, according to msdn you can

    it will set the text for pane #0.

    But I tried the other method as well, no difference.....
  4. Replies
    3
    Views
    998

    Problem with status pane

    I'm trying to use the status pane to display some text.

    Here's the code I have in mainfrm.h:


    // MainFrm.cpp : implementation of the CMainFrame class
    //

    #include "stdafx.h"
    #include...
  5. Replies
    0
    Views
    623

    Very odd CHtmlView problem

    I have an MDI app that uses CHtmlViews for the child windows.

    All work great, as long as the child windows are NOT maximized inside the frame window.

    If a child window is maximized, the window...
  6. Replies
    2
    Views
    787

    unfortunately I cant'

    limit it to the visible items. Thought of that already with my humble brain :-)
  7. Replies
    2
    Views
    787

    Easy way to traverse a tree control?

    I need to read the text labels of all items in a tree control. I don't care at all about the parent/child relationships.

    Is there an easy way to get thru all the items?
  8. Replies
    1
    Views
    684

    Traverse a tree control?

    Is there an easy way to traverse a tree control?

    I just need to iterate the entire tree, not caring about the parent/child relationships. I just need the text label for each item in the tree.
  9. I don't suppose there's an

    ActiveX control written for just this purpose?

    In other words, add an ActiveX control to a dialog (or CFormView, in my case) which would handle running the foreign app itself.
  10. How to run one executable inside another's client window space?

    Is it possible to run an application inside another application's window space?

    For example, if I have fred.exe and I want to have it appear to run as a child window of wilma.exe, an MDI app, is...
  11. Drag & Drop across ActiveX controls in a CHtmlView?

    I have developed an ActiveX control that I use multiple instances of in web pages viewed in a CHtmlView window.

    I need to be able to add Drag & Drop functionality so that I can drag from one...
  12. Replies
    6
    Views
    1,164

    Here's a code chunk:

    I have several overloaded methods to emit the HTML code:



    try {
    tgtfile = new CFile(strFileName, CFile::modeCreate | CFile::modeWrite );
    }

    catch(CFileException)
    {
  13. Replies
    6
    Views
    1,164

    string concatenation & speed question

    I have an app which generates somewhat lengthy HTML files (largest might be around 600K in normal use).

    I emit the HTML tags in small pieces as the app calculates what the page should look like,...
  14. Scrolling listbox selected item into view

    In a listbox, I select one of the items programatically. It works, but that item doesn't scroll up into view.

    How do I force the selected item to scroll into view?



    int i =...
  15. Replies
    0
    Views
    824

    Citrix ica client ActiveX control?

    Anyone used this?

    I'm trying to use it in a dialog-based app. It come up, but gives errors when trying to connect to a server.

    I guess I have to pass it some parameters, anyone have experience...
  16. Help with Drag & Drop across ActiveX controls in a web page or CHtmlView

    I have an ActiveX control that I use in web pages and/or CHtmlView-derived MDI child windows.

    I need to be able to drag and drop between them.

    Is there anyone who has done this? The coding...
  17. Looks like it should, but

    doesn't.
  18. Test whether my MDI app has the focus?

    I did a search but could not find this, though I'm sure it's been answered before.

    I need to be able to test whether my MDI app has the focus or not.

    What's the best way to do this?
  19. REPOST - ActiveX control works fine in IE but not quite in a CHtmlView app

    I have an ActiveX control, derived from a button. (MFC, not ATL).

    When viewed in IE, it works just fine (all it does it automate an Excel spreadsheet when they click on the button).

    But in a...
  20. Retrieving attachments from email using MAPI

    I'm using a chunk of code I found on this site to process email messages using MAPI. Works great.

    Now I need to be able to process attached .XLS files. What I'd like to do is get the names of...
  21. Strange ActiveX problem - works fine in IE but not in CHtmlView

    I have an ActiveX control, derived from a button. (MFC, not ATL).

    When viewed in IE, it works just fine (all it does it automate an Excel spreadsheet when they click on the button).

    But in a...
  22. What is the thought process

    behind your solution?

    I'm just trying to understand why this will help.

    thx.
  23. I probably didn't explain correctly

    For this discussion, let's forget that the values are in a database.

    I still have to do a lot of format()s outside of the database access stuff.

    And the OLE DB library I use requires me to read...
  24. Oops, I realized I wrote my post wrong

    should have been:

    I have an app which manipulates a lot of dates (reading from a database).

    It uses the Format() member function of COleDateTime extensively.

    During a recent profiling...
  25. Need faster replacement for COleDateTime::Format()

    I have an app which manipulates a lot of dates (reading from a database).

    It uses the Format() member function of COleDateTime extensively.

    During a recent profiling session, it became apparent...
Results 1 to 25 of 342
Page 1 of 14 1 2 3 4





Click Here to Expand Forum to Full Width

Featured