Search:

Type: Posts; User: Calthun

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    992

    Monitoring a folder

    Hi, is there a way to get some sort of notification when the contents of a folder is changed ?

    What I want to do is to monitor a folder and see for example if a new file is put into the folder....
  2. Replies
    3
    Views
    1,990

    Thanks, guess I'll look into listview :)

    Thanks, guess I'll look into listview :)
  3. Replies
    3
    Views
    1,990

    Listbox stealing focus

    I'm working on a small drawing app which adds all the items drawn in my drawing window to a listbox as strings.
    I also have a couple of buttons in order to select different drawing tools.

    My...
  4. Replies
    2
    Views
    3,604

    Callback functions from dll

    Hi.

    I've been trying to load a function from a dll, what I did was this:



    typedef LRESULT (CALLBACK *pfKeyProc)(int code, WPARAM wParam, LPARAM lParam);
    HINSTANCE dll =...
  5. Replies
    11
    Views
    2,309

    try www.cppreference.com...

    try www.cppreference.com :)
  6. Replies
    2
    Views
    1,567

    Returning address to temp var.

    Hi.

    I recently wrote a matrix class and overloaded the '()' operator for easy access to the elements. I return the address of the selected element for easy modification.

    Then I also thought...
  7. Replies
    1
    Views
    4,056

    I think your problem lies in your...

    I think your problem lies in your butequals_Click(), when you switch on 'op' it will only switch on the last value assigned to 'op'.
  8. Replies
    2
    Views
    1,600

    Something like this ? for(int x = 9; x > 0;...

    Something like this ?


    for(int x = 9; x > 0; x--)
    {
    for(int y = 0; y < x; y++)
    {
    cout << '*';
    }
  9. Replies
    3
    Views
    980

    Everything working as intended now, thank you :)

    Everything working as intended now, thank you :)
  10. Replies
    3
    Views
    980

    Loop when inactive ?

    Hi, I'm trying to create a program which checks to see if another program is running and if it is, shut it down.

    It's working as long as I keep the program in focus, but when it loses focus the...
Results 1 to 10 of 10