Search:

Type: Posts; User: _Elixia_

Page 1 of 10 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,126

    For embedded stuff, I started of with a Microchip...

    For embedded stuff, I started of with a Microchip PIC dev board, then built my own, played with it, then moved to STMicroelectronics ST7's, then AVR Micro's, and the last ones I've been playing with...
  2. Replies
    4
    Views
    18,061

    ^XOR: The compiler is IAR. Salem: Thanks, I...

    ^XOR: The compiler is IAR.

    Salem: Thanks, I did actually want the said behavior, but at least I know now /why/ the compiler was complaining. Since other people may want to edit the code once it's...
  3. Replies
    4
    Views
    18,061

    Strange side effects?

    I'm using a compiler that is a lot more strict on the C language than normal (it's meant to help create less bugs in the code).

    One thing I'm confused at is that it complains about the following...
  4. Replies
    2
    Views
    1,009

    Thanks for the quick reply, I assumed each side...

    Thanks for the quick reply, I assumed each side of the == would be evaluated seperately.
  5. Replies
    2
    Views
    1,009

    Compiler bug or mis-understanding?

    I've got the following code in a C-style function:



    if (disk&0xF0 != 0xF0)
    {
    // code //
    }
  6. Overloading new/delete with additional arguments

    For memory management reasons, I'm overloading the operators 'new' and 'delete' in my program. I'd like to know where the memory is allocated and freed, so I add additional parameters. So for...
  7. Replies
    16
    Views
    2,459

    If your going to be using it later for...

    If your going to be using it later for professional apps, then I'd certainly recommend the professional version, if only for the optimiser and profiler.
  8. Replies
    3
    Views
    1,486

    Buying a book such as "Practical Visual C++" may...

    Buying a book such as "Practical Visual C++" may be a good first step if neither you or your teacher knows how to use it...
  9. Replies
    5
    Views
    1,750

    Indeed it would. Oops!

    Indeed it would. Oops!
  10. Replies
    5
    Views
    1,750

    They are in there as normal ascii, but without...

    They are in there as normal ascii, but without any alternatives - for example, "A" and "a" are both 65. "0" and "!" are both 48 (0x30). etc...

    If you have the MSDN installed, then look here for a...
  11. Replies
    4
    Views
    1,140

    Here's something I wrote a while ago to do that:...

    Here's something I wrote a while ago to do that:



    HANDLE hProcessSnap = NULL;
    PROCESSENTRY32 pe32 = { 0 };

    hProcessSnap = CreateToolhelp32Snapshot (...
  12. Replies
    3
    Views
    990

    "put" will do what you want. However, as long as...

    "put" will do what you want. However, as long as you give "write" the correct size, it should work also. Ie. Don't use "sizeof"
  13. Replies
    4
    Views
    2,345

    Feb'03 Platform SDK is getting on a bit now. If...

    Feb'03 Platform SDK is getting on a bit now. If you subscribed to MSDN to get it, you should have got the October version way back, which, if the bugs in the SDK, will probably have this fixed.
    ...
  14. Replies
    4
    Views
    3,544

    Doesn't matter if you have access to an SMTP...

    Doesn't matter if you have access to an SMTP server or not, the question is - do the people using your software have access to your SMTP server? Most of the time this will be "No", as otherwise it'll...
  15. Replies
    5
    Views
    1,198

    CxImage here, doesn't come with much...

    CxImage here, doesn't come with much documentation, but it does come with some examples and full source code :) Also supports most of the major image formats.

    Can be got from Codeproject - CxImage
  16. Replies
    5
    Views
    1,302

    Sure, I wrote the entire software for the...

    Sure, I wrote the entire software for the products on this page and coded software for parts of other products not shown here.
  17. Replies
    5
    Views
    1,302

    I've not got anything published as such, but...

    I've not got anything published as such, but since my daytime job involves lot of Embedded C++ coding, I do get satisfaction seeing the final product working and other people using it.
  18. Replies
    14
    Views
    2,574

    When you need more control over your memory...

    When you need more control over your memory allocate than what "malloc" provides. Check the MSDN.
  19. Thread: New to C++

    by _Elixia_
    Replies
    7
    Views
    1,154

    My first C++ book was called "C++ The Complete...

    My first C++ book was called "C++ The Complete Reference" by Herbert Schildt. Pleasure to read and contains a lot of very useful information. Not really a beginners book, but I found it easy enough...
  20. Replies
    7
    Views
    987

    Right, I've never used "using namespace" within...

    Right, I've never used "using namespace" within functions, I didn't even think it was possible! To be honest however, I normally specify namespaces directly for each variable.
  21. Replies
    7
    Views
    987

    Not suprising really. Why are using trying to use...

    Not suprising really. Why are using trying to use " using namespace std;" within a statement block anyway?
  22. Replies
    4
    Views
    865

    If you are using/porting to Linux, you may want...

    If you are using/porting to Linux, you may want to look at NCurses.

    getchar() ? Eughh.. Please, this is a C++ forum! :mad:

    ;)
  23. Replies
    4
    Views
    1,653

    Also, since you are providing an overlapped...

    Also, since you are providing an overlapped structure, you should really wait for completion by allocating an event handle, storing that in the overlapped structure, and then WaitForSingleObject or...
  24. Replies
    5
    Views
    1,787

    I would have thought if he wanted to write an...

    I would have thought if he wanted to write an in-memory virus, he wouldn't want it on the applications tab of the process manager either.

    It can be removed from the taskbar easily enough, and...
  25. Thread: Mfc

    by _Elixia_
    Replies
    3
    Views
    1,000

    If you want to use MFC to make your windows apps...

    If you want to use MFC to make your windows apps easier to write and you don't have vc++, or don't know MFC yet, then an alternative maybe something compiler/os independant such as WXWindows. This is...
Results 1 to 25 of 245
Page 1 of 10 1 2 3 4