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

Search:

Type: Posts; User: wrv369

Search: Search took 0.06 seconds.

  1. Replies
    5
    Views
    10,726

    Re: Horizntal GridSplitter

    I will create another RowDefinition for the grid splitter like so:
    <Grid>
    <!-- Create a 3 row Grid -->
    <Grid.RowDefinitions>
    <!-- Row that contains the ListView. -->
    ...
  2. Replies
    0
    Views
    4,114

    How do you databind to a child Collection?

    Is it possible to databind to a property within a child collection? Stated another way, can you bind to a property that is in a collection...and that collection is a property of another collection....
  3. Replies
    3
    Views
    1,720

    Re: Programatically find ODBC driver

    Thanks DragForce. I ended up using one of the methods you mentioned to get the list of driver types. I loop through that list until I find one that has some identifying text that matches what I am...
  4. Replies
    3
    Views
    1,720

    Programatically find ODBC driver

    I have an application where I am programmatically creating a System DSN (Data Source Name) for Oracle if it doesn't exist on the user's computer. The problem lies in the fact that I have to hard...
  5. Replies
    2
    Views
    1,786

    Re: CDateTimeCtrl change background color

    It seems that CDateTimeCtrl does not receive the WM_CTLCOLOR messages. Does this mean that WM_PAINT is the only message being sent for drawing controls?
  6. Replies
    2
    Views
    1,786

    CDateTimeCtrl change background color

    Is it possible to change the background color of a disabled CDateTimeCtrl? I have unsuccessfully tried deriving my own class from CDateTimeCtrl and overriding the WM_CTLCOLOR message, just as you do...
  7. Replies
    2
    Views
    1,458

    Splitter Control

    It seems that some people have dervied a splitter control from CStatic. This might be the answer. Anyone have any experience with using such a class / control?
  8. Replies
    2
    Views
    1,458

    CSplitter inside CTabCtrl???

    Just wondering how I can put a Splitter (2 rows, 1 col) inside of a CTabCtrl. I want it to look like the Properties tab in the C++ .NET IDE. In case you hadn't noticed there is a splitter with the...
  9. Works only in first column

    Thanks for the neat way of doing this...there are a couple of hangups though that I have.

    First, this works pretty darn good on the first column (the list Item). However, it will not work for any...
  10. CListView Highlighting multiple cells by mouse click

    I am trying to create a CListView for the purpose of scheduling. I have not been able to figure out how to allow the user to click anywhere in the list control, drag the mouse down within that...
  11. Replies
    2
    Views
    655

    Print from Print Preview

    Does anyone know of a way to capture the message or event when the Print button is clicked from Print Preview in an SDI? This is necessary b/c I need to differentiate b/t File|Print and Print from...
  12. Replies
    1
    Views
    1,050

    Aborting Print Process

    Just wondering...I have a SDI application where I load a lot of data into a buffer in OnBeginPrinting(). Since it can take a while to preload the data I implemented a progress meter from...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured