Search:

Type: Posts; User: Italia

Search: Search took 0.01 seconds.

  1. Thread: Help!..

    by Italia
    Replies
    5
    Views
    980

    Isn't this in the FAQ?

    Isn't this in the FAQ?
  2. Replies
    5
    Views
    1,960

    Just treat the ownerdrawn as if it was a normal...

    Just treat the ownerdrawn as if it was a normal child window. Same idea for most things (just a little bit different, like the message that is sent).
  3. Replies
    5
    Views
    1,010

    (I haven't d/l it yet) There's no GUI? What OS...

    (I haven't d/l it yet) There's no GUI? What OS is it based on?
  4. Thread: clock

    by Italia
    Replies
    1
    Views
    1,412

    Go read "Programming Windows 5th Edition" by...

    Go read "Programming Windows 5th Edition" by Charles Petzold. Windows programming is one of those subjects that you don't just learn bit-by-bit. Read the book, and there's a whole chapter dedicated...
  5. Replies
    8
    Views
    1,064

    I suggest getting into Win32 API. You look in...

    I suggest getting into Win32 API. You look in need for GUI programming :p So, what's the problem? Is there still one?
  6. Replies
    5
    Views
    1,010

    What do you need as far as critisism goes?

    What do you need as far as critisism goes?
  7. Replies
    3
    Views
    1,055

    What kind of math are you using to draw this? ...

    What kind of math are you using to draw this? Trig? Geo?
  8. Replies
    7
    Views
    1,401

    Sounds like Winsock...

    Sounds like Winsock...
  9. Thread: help

    by Italia
    Replies
    4
    Views
    921

    Your string comparing is sloppy. Use strcmp...

    Your string comparing is sloppy. Use strcmp (don't forget, it returns 0 if strings are equal). Just read in (I guess through the input stream - stdin) and test for that string, not single...
  10. Replies
    5
    Views
    1,059

    You'll just have to retreive the ten records into...

    You'll just have to retreive the ten records into structs and then put them back in the file with the new ten records. Understand?
  11. Replies
    5
    Views
    1,059

    So, what you want to do is have a counter in a...

    So, what you want to do is have a counter in a file? Just one number? Just fscanf the file for the number. Get the number, increment it, and then write it back to the file. If this isn't what you...
  12. Replies
    10
    Views
    1,737

    Use TCHAR. The compile time will make the...

    Use TCHAR. The compile time will make the necessary conversions. If reading in an ASCII file, then make a variable char, otherwise use TCHAR.
  13. Replies
    8
    Views
    1,064

    Your struct should look something like: ...

    Your struct should look something like:


    struct person {
    int ID;
    char name[];
    int num;
    int contact;
    };
Results 1 to 13 of 13