Search:

Type: Posts; User: supernater

Search: Search took 0.01 seconds.

  1. Ahhhh! You're right. I should have done ...

    Ahhhh! You're right. I should have done

    Window ** Array = new Window*[260];

    Sheesh, I've been staring at my computer too long. Now the variable Array is a pointer to a dynamic array of...
  2. trouble initializing a dynamic array of pointers to NULL

    I have created a dynamic array of pointers to structures as shown below. I am trying to initialize them all to NULL but I keep getting errors. Can anyone tell me what I'm doing wrong? Thanks.

    ...
  3. Replies
    1
    Views
    3,079

    cannot insert toolbar into rebar

    Hi there, I'm trying to insert a toolbar into a rebar and I can't seem to do it properly. This is my code so far...



    //common controls are initiated in the main function

    HWND...
  4. Replies
    1
    Views
    2,016

    toolbar button question

    I am adding buttons to a toolbar using this code...


    void CreateToolBar(HWND hwnd)
    {
    // Define some constants.
    const int ImageListID = 0;
    const int numButtons = 3;
    const...
  5. Replies
    1
    Views
    2,233

    initcommoncontrolex question

    I am making a status bar in my application and I was wondering which way was the correct way to initiate the common control function. Here are the two ways I'm using



    INITCOMMONCONTROLSEX...
  6. Replies
    2
    Views
    1,811

    Ah, I should have paid better attention when I...

    Ah, I should have paid better attention when I submitted, I thought I had clicked on the Windows Programming forum.
  7. Replies
    1
    Views
    1,397

    adding font to a combo box

    I have created a list box using this code...





    hFontTypeButton = CreateWindowEx( 0, WC_COMBOBOXEX,
    NULL,
    CBS_SIMPLE | WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST,...
  8. Replies
    2
    Views
    1,811

    adding font to a list box or combo box

    I have created a list box using this code...



    hFontTypeButton = CreateWindowEx( 0, WC_COMBOBOXEX,
    NULL,
    CBS_SIMPLE | WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST,...
Results 1 to 8 of 8