Search:

Type: Posts; User: digitaltsai

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,325

    Thanks for the quick replies Works great now! :D

    Thanks for the quick replies
    Works great now! :D
  2. Replies
    5
    Views
    1,325

    Better way to do this?

    Is there some method to combine all these steps?


    char char2num[10];

    char2num[0] = '0';
    char2num[1] = '1';
    char2num[2] = '2';
    char2num[3] = '3';
    char2num[4] = '4';
  3. Replies
    1
    Views
    2,286

    changing incoming port for firefox

    does anyone know how i can make firefox always use port 21 as the incoming port?
  4. Thread: MD5 Thing

    by digitaltsai
    Replies
    2
    Views
    1,577

    Ah, found out what it does It just does this in...

    Ah, found out what it does
    It just does this in PHP


    <?php
    md5($key . $password . "AOL Instant Messenger (SM)");
    ?>

    Adds the strings together then does md5 crap on it all combined
  5. Thread: MD5 Thing

    by digitaltsai
    Replies
    2
    Views
    1,577

    MD5 Thing

    Can someone please explain to me what this means
    It would be nice if someone could translate it to PHP
    PHP only has a md5() function

    #define AIM_MD5_STRING "AOL Instant Messenger (SM)"

    ...
  6. Replies
    4
    Views
    1,515

    Works now, thanks!

    Works now, thanks!
  7. Replies
    4
    Views
    1,515

    Tried it and didn't work I should probably add...

    Tried it and didn't work

    I should probably add that my control resource thing is this:

    CHECKBOX "Auto", IDC_CHK_AUTO, 6,49,150,9
  8. Replies
    4
    Views
    1,515

    Checkboxes not Checking?

    I have a dialog box with a check box
    When the user clicks on the checkbox, it does not check. Why? I noticed that if I make the code check a different checkbox than the one thats being clicked, it...
  9. Replies
    4
    Views
    2,808

    doh! I should have listened the first time to the...

    doh! I should have listened the first time to the suggestion of including windows.h

    I thought you were refering to something like main.h

    Thanks, it works perfectly now! :D
  10. Replies
    4
    Views
    2,808

    defining IDC_STATIC does save some futures...

    defining IDC_STATIC does save some futures problems. Right now though, I still keep getting syntax error on this line (its highlighted when I try to compile it):


    STYLE DS_MODALFRAME | WS_POPUP...
  11. Replies
    4
    Views
    2,808

    Dev-Cpp: Resource Script Syntax

    What is the proper syntax for this?

    IDD_ABOUT DIALOG DISCARDABLE 0, 0, 239, 66
    STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
    CAPTION "My About Box"
    FONT 8, "MS Sans Serif"
    BEGIN
    ...
  12. Replies
    8
    Views
    1,255

    You want to include the count++ in the IF where...

    You want to include the count++ in the IF where the grade is less than 101. You would use brackets.

    http://www.cprogramming.com/tutorial/lesson2.html
  13. Replies
    8
    Views
    1,255

    You are doing count++ regardless of whether the...

    You are doing count++ regardless of whether the grade is valid or not.
  14. Replies
    17
    Views
    11,729

    I wasn't planning to write a complete web...

    I wasn't planning to write a complete web browser, just seeing how to write a program which can send and receive data to and from other computers.

    I'll stop working on this now since its not for...
  15. Replies
    17
    Views
    11,729

    I found the problem! This is kind of dumb, since...

    I found the problem!
    This is kind of dumb, since Tonto made a statement about the recv buffer not being null-terminated. I did not know what a string not being null-terminated meant before so I...
  16. Replies
    1
    Views
    849

    Programming in both Linux and Windows

    Is there a tutorial on how to program in both Linux and Windows? I do not even know how to have a form for users to input variables and stuff. Where can I learn all this?
  17. Replies
    17
    Views
    11,729

    buffer of the recv It give me back the correct...

    buffer of the recv
    It give me back the correct stuff, then a 0, then repeats part of the correct stuff again. <-all this is in the last buffer
  18. Replies
    17
    Views
    11,729

    How do I set the temporary buffer in the receive...

    How do I set the temporary buffer in the receive to be the size of the incoming data?
    [edit]
    Nevermind, figured that it doesn't matter

    Now I just have to figure out why the last buffer is so...
  19. Replies
    17
    Views
    11,729

    O bleh. I meant to put quotes around that the...

    O bleh.
    I meant to put quotes around that
    the include iostream works!
    I don't see why we need to include all these files. Why not just include like one file that is a combination of everything?
  20. Replies
    17
    Views
    11,729

    Wow! Thanks, now I am finally getting some...

    Wow! Thanks, now I am finally getting some results! :D
    I didn't even know I was just writing in pure C -.-

    Unfortunately, since I am kind of a beginner to C, I do not really understand your...
  21. Replies
    17
    Views
    11,729

    Socket web browser

    I am trying to create a simple web browser, but I have not found any tutorials. I have read a socket tutorial (but it is not on creating a web browser), and the code I give below is what I have come...
Results 1 to 21 of 22