Search:

Type: Posts; User: Koyaanisqatsi

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,696

    boost::serialization + vc6

    I have downloaded the newest version of boost (1.32). Then I tried to
    build the package with vc6. But I got problems with boost::serialization.
    It couldn't be build because vc6 can't work with...
  2. Replies
    1
    Views
    1,858

    Sysinternals-Article...

    Sysinternals-Article

    no further comment :)

    mfg JJ
  3. Why not use inline functions instead of such kind...

    Why not use inline functions instead of such kind of macros.

    mfg JJ
  4. Replies
    5
    Views
    1,195

    To simplify this difficult decision, it is...

    To simplify this difficult decision, it is recommended to use the for_each algorithm instead of user written loops. ;) ;)

    mfg JJ
  5. Maybe the lack of answers is because a listbox is...

    Maybe the lack of answers is because a listbox is nothing wich belongs to Standard C++. For Windows you get more answers in WINAPI-Forum, on .NET you get more answers in the C#-Forum. :)
  6. Replies
    6
    Views
    6,066

    When i use a string the same way you described,...

    When i use a string the same way you described, i had to use the using-stament the same way in microsoft VC 6 too. :confused: But i must warn you, never to use a using-stament in header-files....
  7. Replies
    39
    Views
    3,592

    Already finished with c++ ?? :D :D

    Already finished with c++ ?? :D :D
  8. Replies
    13
    Views
    6,385

    I think "The C++ Programming Language by...

    I think "The C++ Programming Language by Stroustrup" is a necessity, for any advanced c++ programer, but its absolutly bad as a starting point. I know of some people interested in C++ programming,...
  9. I hope this example helps you: CFirst.h ...

    I hope this example helps you:

    CFirst.h

    template<typename T>
    class CFirst
    {
    public:
    CFirst() {};
    virtual ~CFirst() {};
  10. Replies
    13
    Views
    6,385

    As Salem says there is no single best at all....

    As Salem says there is no single best at all.
    But my personal favorite for startup is:
    C++ Primer

    mfg JJ
  11. Replies
    8
    Views
    2,266

    I think you should do some practice. By solving...

    I think you should do some practice. By solving real problems, you will see questions are rising. So you can see what you need to know. Nobody knows evertyhing, if he/she is not working in...
  12. Replies
    3
    Views
    1,302

    It doesn't work because vector.erase() takes an...

    It doesn't work because vector.erase() takes an iterator as argument.
    In case 2 it only works because in this case the iterator is a pointer. But this mustn't always be true. So you should always...
  13. Replies
    3
    Views
    2,953

    If you want to fix STL-Bugs in VC5/VC6 this is an...

    If you want to fix STL-Bugs in VC5/VC6 this is an interesting link for you:
    http://www.dinkumware.com/vc_fixes.html

    mfg JJ
  14. Replies
    3
    Views
    2,953

    The location your are looking for ist exactly...

    The location your are looking for ist exactly where it is described in this article:

    :p

    It is placed in the "standard" include-directory.

    mfg JJ
  15. Replies
    12
    Views
    2,100

    I haven't made any tests. But as i can see your...

    I haven't made any tests. But as i can see your constructor of name is private. That means nobody can "directly" construct an instance of this class. Is this really what you want ?

    mfg JJ
  16. Replies
    6
    Views
    1,819

    I think when Hammer talks of standard...

    I think when Hammer talks of standard containers, he is talking about the STL. Maybe you can use vectors or sets to fullfill your task. You must not worry about reallocating memory, and sort can be...
  17. Replies
    5
    Views
    1,375

    The critical section should be as short as...

    The critical section should be as short as possible. So wrapp only the pieces of code in between a critcal section which are manipulating "shared" data

    mfg JJ
  18. Replies
    2
    Views
    928

    1.) If you use VB you will use ADO as...

    1.) If you use VB you will use ADO as DB-Interface. This is the "naturally" and easy interface to all Databases. You can/will use the same interface in C++, but in C++ it is much mor difficult to...
  19. Replies
    11
    Views
    1,861

    I hope it won't confuse you, but in C++, other...

    I hope it won't confuse you, but in C++, other than C, you must not use pointer for function parameters you want to change. Instead better use reference-parameters wherever you can. :)

    ...
Results 1 to 19 of 19