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

Search:

Type: Posts; User: Ness

Page 1 of 12 1 2 3 4

Search: Search took 0.20 seconds.

  1. Thread: Load DLL

    by Ness
    Replies
    6
    Views
    3,156

    I was about to post similar code, but you posted...

    I was about to post similar code, but you posted right before I did.
  2. Thread: Load DLL

    by Ness
    Replies
    6
    Views
    3,156

    Bah, Alin beat it to me. :(

    Bah, Alin beat it to me. :(
  3. Replies
    7
    Views
    1,540

    *bumpbumpbump*

    *bumpbumpbump*
  4. Replies
    6
    Views
    2,053

    You didn't specify a port.

    You didn't specify a port.
  5. Replies
    7
    Views
    1,540

    There's gotta be something wrong. Maybe something...

    There's gotta be something wrong. Maybe something simple; anyone's help is GREATLY appreciated.
  6. Replies
    5
    Views
    1,014

    Just a note: BitBlt has a memory leak as well, it...

    Just a note: BitBlt has a memory leak as well, it eats up memory if you move the window. SetBitmap may be using BitBlt.
  7. Replies
    7
    Views
    1,540

    Bleh, there's still a problem. Though I can...

    Bleh, there's still a problem. Though I can connect to the capture window, my wave callback isn't being called. What's wrong now?
  8. Replies
    7
    Views
    1,540

    Oh geez, I didn't even notice that! Thanks a...

    Oh geez, I didn't even notice that!

    Thanks a bunch man!
  9. Replies
    7
    Views
    1,540

    No help, still returning 0, and yes, capWnd is...

    No help, still returning 0, and yes, capWnd is being created like any normal HWND.
  10. Replies
    7
    Views
    1,540

    Cannot Connect to Capture Window

    I'm using a capture window to take input from the microphone, but there's a bit stagg here. I see absolutly no reason why this call would fail:


    void initCap()
    {

    capWnd =...
  11. Replies
    0
    Views
    2,617

    capCreateCaptureWindow

    Hey all,

    I've been wondering, I know capCreateCaptureWindow is used for getting webcam/camera/TV tuner card frames, but there's one thing I am puzzled about. On MSDN, they have a callback for...
  12. Thread: I'm such an idiot

    by Ness
    Replies
    4
    Views
    868

    Meh...anyone?

    Meh...anyone?
  13. Thread: I'm such an idiot

    by Ness
    Replies
    4
    Views
    868

    I'm such an idiot

    I lost my code snippit to loading an image from the resource. The search feature isn't so useful since there are dozens of articals containiing display picture. Can someone give me the snippit?
    ...
  14. Thread: Ordering

    by Ness
    Replies
    14
    Views
    1,919

    Thanks a bunch, but theres ANOTHER problem. How...

    Thanks a bunch, but theres ANOTHER problem. How do I make it sort grom greatest to least?
  15. Thread: Ordering

    by Ness
    Replies
    14
    Views
    1,919

    This is my complete structure (replace priority...

    This is my complete structure (replace priority with coins):


    typedef struct user_tag
    {
    char username[13];
    char password[13];
    char NAME[13];
    char ip[17];
    char avatar[500];
  16. Thread: Ordering

    by Ness
    Replies
    14
    Views
    1,919

    *bump bump bump*

    *bump bump bump*
  17. Thread: Ordering

    by Ness
    Replies
    14
    Views
    1,919

    When I use std::sort, it just clears my whole...

    When I use std::sort, it just clears my whole array, leaving absolutly nothing in it. What's wrong?
  18. Thread: FAGH.com

    by Ness
    Replies
    6
    Views
    1,672

    Oh god....you made my day.

    Oh god....you made my day.
  19. Thread: Ordering

    by Ness
    Replies
    14
    Views
    1,919

    But the number is inside the structure. ...

    But the number is inside the structure.


    typedef struct user_tag
    {
    int priority;
    } user;

    user users[2000];
  20. Replies
    1
    Views
    448

    C++ is not hard. Just learn the syntax and...

    C++ is not hard. Just learn the syntax and basics. It's the libraries that are "hard."
  21. Thread: Ordering

    by Ness
    Replies
    14
    Views
    1,919

    Ordering

    I have a project that I'm working on, and it concerns a mass userbase. I ave a structure containing information about each user. There is one variable, priority, which is self explainatory. What I...
  22. Replies
    2
    Views
    587

    Be a bit more descriptive...are you referring to...

    Be a bit more descriptive...are you referring to ASCII text?
  23. Thread: floating toolbar

    by Ness
    Replies
    1
    Views
    674

    Make your own toolbar class.

    Make your own toolbar class.
  24. Thread: Openfilename

    by Ness
    Replies
    11
    Views
    2,733

    Weird...can someone explain why you have to...

    Weird...can someone explain why you have to include commdlg.h if it's already included in windows.h?
  25. A little improvement on Andrea's code: (usman999...

    A little improvement on Andrea's code: (usman999 meant completely fullscreen)


    RECT wSize;
    MONITORINFO mInfo = {sizeof(MONITORINFO)};
    HWND h = ::GetForegroundWindow(); // Good choice over...
Results 1 to 25 of 285
Page 1 of 12 1 2 3 4





Click Here to Expand Forum to Full Width

Featured