Search:

Type: Posts; User: dizolve

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Thread: Restore CD's

    by dizolve
    Replies
    8
    Views
    1,716

    Usually DELL, eMachines, etc., preinstall certain...

    Usually DELL, eMachines, etc., preinstall certain software for profit. An example would be them installing AOL on the computer and then putting links everywhere and AOL will give them some money....
  2. Assign it to NULL when you create it and then...

    Assign it to NULL when you create it and then check that.
  3. Replies
    2
    Views
    1,556

    The WNDCLASS is simply an object for giving...

    The WNDCLASS is simply an object for giving information on the window class to be registered. The HWND is the actual handle to your window after you register the class and create the window.

    Edit:...
  4. Thread: RAM type

    by dizolve
    Replies
    3
    Views
    1,063

    Well... 1) Look at the screen when your...

    Well...

    1) Look at the screen when your computer starts up.. it might indicate PC100/PC133/etc
    2) Look in your BIOS setup
    3) Look at the actual RAM..
  5. Thread: Connection...

    by dizolve
    Replies
    8
    Views
    2,085

    If you're playing on the same server at the same...

    If you're playing on the same server at the same time then it has to be something local with your modem or NIC settings...

    Go to www.dslreports.com, they have a lot of tips and hacks.
  6. Replies
    4
    Views
    1,198

    char *str; str = (char *)malloc(10); // str...

    char *str;

    str = (char *)malloc(10); // str now points to a block of 10 bytes (error check this)

    free(str); // Free the memory

    str = NULL; // So we don't accidently cause a crash by...
  7. Replies
    7
    Views
    1,401

    You don't need to store each letter, only count...

    You don't need to store each letter, only count each letter.

    char chCount[26];

    This array will hold 26 elements, A-Z. Read through the file and each time you get a letter increment the...
  8. Replies
    7
    Views
    1,401

    char chCount[26]; Go through the file, one...

    char chCount[26];

    Go through the file, one character at a time, if it's a-z or A-Z increment the corresponding array element. Once it's done, add all the elements together and you'll get the total...
  9. Thread: Ideas needed

    by dizolve
    Replies
    15
    Views
    3,295

    Hrm.... well 1) Client/Server chat software...

    Hrm.... well

    1) Client/Server chat software
    2) Maybe... like domain lookup? console display of owner/name servers for a domain..

    I'll post more if I come up with any.
  10. Thread: Mind Reader

    by dizolve
    Replies
    13
    Views
    3,541

    It didn't work.. thought of 78.. 78-8=70-7=63...

    It didn't work.. thought of 78.. 78-8=70-7=63 which is a cross and it showed a snowflake :x
  11. Replies
    11
    Views
    1,689

    Uhm.. this is a joke right? heh.. just because...

    Uhm.. this is a joke right? heh.. just because someone fakes a ping reply they're a hacker?
  12. Replies
    2
    Views
    2,087

    Search on google for bugs.. maybe you're getting...

    Search on google for bugs.. maybe you're getting 16 FPS past the upper barrier (some games I've seen wrap at 255 or lower).. although at 255fps or around there the game would start to look...
  13. Thread: Languages

    by dizolve
    Replies
    23
    Views
    6,949

    L33T Language (C) Copyright 1975-2003 dizolve ...

    L33T Language (C) Copyright 1975-2003 dizolve

    :D :D
  14. Replies
    20
    Views
    4,370

    I really can't think of anything.. you'd have to...

    I really can't think of anything.. you'd have to send it as an attachment on the e-mail and for that you'd need the entire file, unless you somehow stream it from the source to the e-mail server....
  15. Thread: pointers

    by dizolve
    Replies
    3
    Views
    868

    *posts a sign* "Don't feed the Students"

    *posts a sign*

    "Don't feed the Students"
  16. Thread: x86 assembly

    by dizolve
    Replies
    9
    Views
    3,081

    DOS/Windows uses a combination of two characters...

    DOS/Windows uses a combination of two characters to signify a new line...

    ASCII #13 is CR - Carriage Return
    ASCII #10 is LF - Line Feed
  17. Replies
    13
    Views
    1,908

    I'm sorry but if the file was locked from being...

    I'm sorry but if the file was locked from being deleted (written), wouldn't that also stop you from writing 0's? Why not just try to write it?
  18. Replies
    5
    Views
    1,542

    That's because 'digit' is type char.. I assumed...

    That's because 'digit' is type char.. I assumed when you said you wanted Node *Num that you wanted to use 'Node.digit' for storage.. change digit to int if so.
  19. Thread: Help Needed

    by dizolve
    Replies
    3
    Views
    1,073

    Start with displaying one option, like "Check...

    Start with displaying one option, like "Check Balance".. make that work and then continue to add options until everything you can think of is done. Go look at a real ATM to get ideas for what you...
  20. Replies
    5
    Views
    1,542

    BigInt operator+(BigInt A, BigInt B) {...

    BigInt operator+(BigInt A, BigInt B)
    {
    A.Num->digit += B.Num->digit;
    return A;
    }
  21. Replies
    2
    Views
    1,352

    Well, with VC you'd just add them all into a...

    Well, with VC you'd just add them all into a project (File->New, Projects, Win32 *), #include the header where needed and compile...

    I think this is what you needed to know? If not, respond back...
  22. Thread: Wm_timer?

    by dizolve
    Replies
    2
    Views
    1,004

    Try using an id like... UINT tId = 1; ...

    Try using an id like...



    UINT tId = 1;

    SetTimer(hWnd,tId,5000,NULL);

    KillTimer(hWnd, tId);
  23. Replies
    5
    Views
    2,010

    Try taking a peek at this.. ...

    Try taking a peek at this..

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/ntquerysysteminformation.asp
  24. Thread: Ideas?

    by dizolve
    Replies
    2
    Views
    998

    Post your code so that we can see if you're going...

    Post your code so that we can see if you're going in the "wrong direction".. if such a thing exists. Remember to use code tags too.
  25. Replies
    36
    Views
    4,344

    Well, first game I ever made was a Win32...

    Well, first game I ever made was a Win32 TicTacToe... second-fifth were custom mud codebases (I kept redoing them) and then a little space game with SDL that sucks..
Results 1 to 25 of 68
Page 1 of 3 1 2 3