Search:

Type: Posts; User: hunterdude

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    1,886

    Asking a question on a nonexistent message board...

    Asking a question on a nonexistent message board doesn't usually lead to an answer. ;)
  2. Replies
    8
    Views
    1,886

    Thank you. I have one further question: How do...

    Thank you. I have one further question: How do you call this function in python?
  3. Replies
    8
    Views
    1,886

    I want to make a program that will run in the...

    I want to make a program that will run in the background and use hotkeys to do various things. I wanted one of them to change whether hidden files are displayed. I don't see why this is such a...
  4. Replies
    8
    Views
    1,886

    What I am looking for is a function that will...

    What I am looking for is a function that will change whether hidden files are shown in Windows Explorer, that is, a way to programmatically toggle the "Show Hidden Files and Folders" setting that is...
  5. Replies
    8
    Views
    1,886

    Showing hidden files

    Is there a way to change whether hidden files and folders are displayed by Windows?
  6. Replies
    3
    Views
    1,004

    Thank you for your input. Actually my idea was...

    Thank you for your input. Actually my idea was to set it up so you wouldn't have to write anything else. std::cout will still work even if you don't write anything at the end. I might implement...
  7. A double is bigger and more precise. It is 8...

    A double is bigger and more precise. It is 8 bytes while a float is 4 bytes.
  8. Replies
    3
    Views
    1,004

    message box class

    I am working on a class that is supposed to make it easier to put stuff into message boxes. I want it to work like std::cout so I can do something like this:

    Messagebox<<somevariable<<"blah blah...
  9. Replies
    18
    Views
    8,010

    Oh, that would explain it. I know absolutely...

    Oh, that would explain it. I know absolutely nothing about MFC so maybe that's why I misunderstood.

    Anyway, here's a simple example without MFC:

    #include <windows.h>
    #include <commctrl.h>...
  10. Replies
    18
    Views
    8,010

    If you look at your window procedure: LRESULT...

    If you look at your window procedure:

    LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
    {
    /* Blah Blah Blah */

    case...
  11. Replies
    18
    Views
    8,010

    That statement changes the progress bar. I...

    That statement changes the progress bar. I thought that was what you wanted to do, but maybe I misunderstood. NewPosition was just a dummy variable, you have to change it to whatever you want the...
  12. Replies
    18
    Views
    8,010

    If you want to use the idc address thingy try...

    If you want to use the idc address thingy try this, replacing newPosition with the position you want the progress bar at:

    SendMessage(GetDlgItem(hwnd,IDC_WHATEVER), PBM_SETPOS,newPosition,0);
    ...
  13. Replies
    18
    Views
    8,010

    Try the SendMessage API to set the position of...

    Try the SendMessage API to set the position of the progress bar:
    SendMessage( hWndControl, PBM_SETPOS,newPosition,0);

    Look here for more info:...
  14. Replies
    4
    Views
    1,481

    Thank you for your help. I started a new project...

    Thank you for your help.
    I started a new project and used the exact same code I used before and this time it worked. Hmm, what could have caused that?
  15. Replies
    3
    Views
    1,254

    Did you try this?...

    Did you try this?
    http://www.codeproject.com/docking/toolbarwithcombo.asp
  16. Replies
    4
    Views
    1,481

    That's what I was afraid of. I was hoping someone...

    That's what I was afraid of. I was hoping someone had experienced this before and could give a quick answer. Well, here it goes.

    It is part of a matrix class I am trying to make. One of the...
  17. Replies
    4
    Views
    1,481

    Please help - dividing doubles

    I have two variables:
    double a;
    double b;

    I can display them...
    std::cout<<a<<" "<<b;

    and I can display their sum, difference, and product. But when I make a new variable...
    double c = a/b;
Results 1 to 17 of 17