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

Search:

Type: Posts; User: mwilliamson

Page 1 of 80 1 2 3 4

Search: Search took 0.51 seconds.

  1. Replies
    3
    Views
    1,636

    The FreeImage library is opensource and can do...

    The FreeImage library is opensource and can do binlinear scaling and much more.
  2. You could also reverse that: if( (y-x) >= 0 )...

    You could also reverse that:

    if( (y-x) >= 0 ) ...
  3. Replies
    2
    Views
    941

    Change the 1 to a 3.

    Change the 1 to a 3.
  4. Yeah, I've heard of virii infecting your restore...

    Yeah, I've heard of virii infecting your restore directory too. WFP stops virii from infecting files needed to boot though, so usually the AV can remove anything. But if you are running an AV, it...
  5. Replies
    19
    Views
    1,909

    I fixed up a computer yesterday for a co-worker. ...

    I fixed up a computer yesterday for a co-worker. It had that torjan.downloader virus on it too (a long with sassar and about 30 others!). AVG cleaned it right out for me too.
  6. Replies
    8
    Views
    923

    argv[0] is usually the name of the program.

    argv[0] is usually the name of the program.
  7. Thread: Net Send

    by mwilliamson
    Replies
    12
    Views
    3,564

    I've posted an example of this before using...

    I've posted an example of this before using mailslots. You basically just need to write to the correct mail slot on the target machine.
  8. Replies
    18
    Views
    2,124

    Poll: I like Opera, the web browser.

    I like Opera, the web browser.
  9. Windows already does this, in mobsync on Windows...

    Windows already does this, in mobsync on Windows 2000 and greater.
  10. Replies
    10
    Views
    1,470

    I don't think this book teaches C++. It shows...

    I don't think this book teaches C++. It shows you MFC but already assumes you know how C++ works. If you have never programmed in C++ before, I question what kind of knowledge you will end up with...
  11. Replies
    2
    Views
    766

    Poll: I think you want to write a GINA instead, which...

    I think you want to write a GINA instead, which is the log-in authenticator.
  12. Replies
    2
    Views
    797

    If you want to hook an external application you...

    If you want to hook an external application you must use a DLL. The reason is because an application can not access code outside of its address space, which includes code in your application. By...
  13. Replies
    5
    Views
    2,080

    Regardless of focus you need to use a keyboard...

    Regardless of focus you need to use a keyboard hook. If you want to hook only with-in your application this can be done in an a function. If you want to hook system-wide you must implement it in a...
  14. Replies
    18
    Views
    2,124

    Poll: I like Opera.

    I like Opera.
  15. Replies
    3
    Views
    913

    Well, how did you write it? I would suggest just...

    Well, how did you write it? I would suggest just reading each record and adding it to the tail of the list. Storing a tail pointer will speed this up.
  16. Replies
    3
    Views
    949

    Regular expressions should be used to tokenize...

    Regular expressions should be used to tokenize your input. Your syntactical and semantical analyzers should determine if the input is valid. Thus you'll want to tokenize the language into its...
  17. Replies
    11
    Views
    1,823

    Poll: Keyboard hook, eat the b key and put out the rest...

    Keyboard hook, eat the b key and put out the rest of them that you need. I've posted examples in the past.
  18. ummm... why?

    ummm... why?
  19. Replies
    6
    Views
    1,245

    using namespace justs imports everything from...

    using namespace justs imports everything from that namespace into the global namespace. It is in no way required, just a convience. Instead you would have to write

    std::cout << ...;

    With...
  20. Replies
    11
    Views
    1,260

    I like OnTrack EasyRecovery. I don't know if its...

    I like OnTrack EasyRecovery. I don't know if its in your price range, but it has always worked well for me.
  21. Replies
    5
    Views
    1,327

    Its in argv[0].

    Its in argv[0].
  22. Replies
    5
    Views
    1,144

    I agree, what you are describing is a switch,...

    I agree, what you are describing is a switch, which only allows communication between two ports. A hub is basically as I described earlier.
  23. Replies
    5
    Views
    1,144

    A hub takes input from one port and broadcasts it...

    A hub takes input from one port and broadcasts it to all ports.
  24. Replies
    1
    Views
    1,491

    Its not possible. All languages C, C++, Delphi,...

    Its not possible. All languages C, C++, Delphi, VB, etc create a file. So you have no way of knowing which language the file is. Further more, there is more than one way of accomplishing most...
  25. Thread: MS Chart

    by mwilliamson
    Replies
    8
    Views
    1,950

    Assuming its freely distributable (I don't know...

    Assuming its freely distributable (I don't know why it wouldn't be), you can just copy the ocx onto your hard drive and register it. I also like the charting component that comes with Office 2000...
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured