Search:

Type: Posts; User: Hannes

Search: Search took 0.01 seconds.

  1. Thread: Charts

    by Hannes
    Replies
    9
    Views
    1,728

    Isn't there a TChart component that comes with...

    Isn't there a TChart component that comes with BCB? There is one in BCB6 at least.
  2. Replies
    7
    Views
    10,810

    break can only be used to end a loop. Use exit()...

    break can only be used to end a loop. Use exit() or return.
  3. Replies
    5
    Views
    1,760

    The function calculates the length of the string...

    The function calculates the length of the string that s points to. *s means the current character in the string and '\0' is the null character with which all strings end. So the function checks for...
  4. Replies
    5
    Views
    1,712

    Or make an empty constructor and use a Create()...

    Or make an empty constructor and use a Create() member function which returns a bool.
  5. Thread: graphics stuff

    by Hannes
    Replies
    9
    Views
    1,136

    You should check out Allegro...

    You should check out Allegro . It's cross-platform and very easy to use. It's intended as a game programming library, but of course you can use it for any type of application that requires graphics...
  6. Replies
    3
    Views
    1,111

    Using the registry sounds like a good idea....

    Using the registry sounds like a good idea. Thanks alot!
  7. Replies
    3
    Views
    1,111

    Storing a password

    I'm writing a program that is supposed to be used for educational purposes on high school/college level, and I want to password-protect some features so that only the teacher can access them.
    Now,...
  8. Replies
    0
    Views
    3,523

    Problem with TImage in Borland C++ Builder

    I'm using Borland C++ Builder 6 and I want to have one TImage on top of another (both images visible) without the image on top catching mouse events. Right now, the image on top blocks the image...
Results 1 to 8 of 8