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

Search:

Type: Posts; User: spacewarp

Search: Search took 0.06 seconds.

  1. Re: Evaluation order of expression with single AND operator?

    See this page

    Programming languages mostly evaluate in left to right order. Parentheses group statements, causing the result contents of the parentheses to be evaluated as a single statement, but...
  2. Replies
    1
    Views
    1,767

    Re: Binary comma operator

    Third line to separate variable declarations (not as operator, as stated above)
    Sixth line to separate loop increment statements (as operator)

    Not a particularly instructive example I have to say.
  3. Replies
    1
    Views
    4,269

    Re: log stream implementation issue

    Four things:

    1. You may not assume that the buffers are null-terminated, don't use strlen()

    2. When calling setp() you are replacing the previous buffer with your own.
    This means that when...
  4. Replies
    3
    Views
    1,011

    Re: Timing my function

    Google is your friend :)
    http://stackoverflow.com/questions/588307/c-obtaining-milliseconds-time-on-linux-clock-doesnt-seem-to-work-properly
    (I expect the code in the second answer there does...
  5. Replies
    13
    Views
    9,164

    Re: How do I write basic DLL injection file?

    Hehe, I second the above. But being a Win32 programmer myself I know how curious about this kind of stuff I was in the beginning :)



    Number 2, the callback procedure, is what goes inside the...
  6. Replies
    13
    Views
    9,164

    Re: How do I write basic DLL injection file?

    First of all, I'd recommend you be careful with hooks. Because if you make a mistake more than your program may crash, though if you're only going to hook a single notepad process there's not much of...
  7. Replies
    3
    Views
    3,924

    Re: ERROR_CLASS_DOES_NOT_EXIST 1411 (0x583)

    The window class (the second parameter) you're trying to use does not exist. AFAIK the names of window classes are case-sensitive so what you want is

    TEXT("STATIC")
    instead.
  8. Replies
    0
    Views
    6,461

    Strange Error in Tablet PC API

    Hello, I'm currently experimenting with the windows (vista) tablet pc api. It works but I get a large amount of debug messages similar to:



    First-chance exception at 0x7752fbae in...
  9. Replies
    3
    Views
    1,152

    Re: Bluetooth sockets not working

    Solved :)
    I figured out how to use the virtual COM ports which work perfectly. I still think the pocket pc is a bit weird because according to some tests I ran there isn't even a bluetooth stack so...
  10. Replies
    3
    Views
    1,152

    Re: Bluetooth sockets not working

    Thanks for the reply. Unfortunately I have absolutely no idea how to do that. Any tips?
  11. Replies
    3
    Views
    1,152

    Bluetooth sockets not working

    Hello,
    I'm trying to create a simple client/server app using bluetooth. I've had no problem with the server app running on my laptop but I'm having major issues with the client that's supposed to...
  12. Replies
    1
    Views
    1,614

    Re: Bluetooth Windows Desktop App

    Might this be what you're looking for?

    http://msdn.microsoft.com/sv-se/library/aa362928(en-us,VS.85).aspx
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured