Search:

Type: Posts; User: ROCKaMIC

Search: Search took 0.00 seconds.

  1. Replies
    0
    Views
    1,003

    Downloading from multiple sources

    Where can i find some information on coding a download-from-multiple-sources program, also what are the methods used for it?


    Thanks!
  2. Replies
    5
    Views
    1,456

    First of all you have to change.. pch =...

    First of all you have to change..


    pch = strstr(str, "good");

    by..


    pch = strstr(grabber, "good");
  3. Replies
    12
    Views
    2,538

    Yes. So the most ethic solution would be just...

    Yes.

    So the most ethic solution would be just find the default smtp of a computer.. somewhere in windows' registry or something.. no idea
    :confused: :rolleyes:
  4. Replies
    12
    Views
    2,538

    :) fixed some cases.. thanks but what if the...

    :) fixed some cases.. thanks

    but what if the isp only gives access to their smtp server and none other? :( :S
  5. Replies
    12
    Views
    2,538

    port 25 block..

    I got a program that sends email by connecting to a smtp server..

    the problem is.. what to do if the ISP of the user blocks all but the isp's smtp server??

    there must be a loophole to it.....
  6. Thread: SMTP server

    by ROCKaMIC
    Replies
    1
    Views
    1,246

    SMTP server

    I'm trying to develop a SMTP server, i've already coded clients.
    I've searched for source but i can't find any.

    Can someone give me the basics on it, some source code?

    Thanks!

    p.s. i...
  7. Thread: SMTP Server

    by ROCKaMIC
    Replies
    1
    Views
    1,669

    SMTP Server

    I'm trying to develop a SMTP server, i've already coded clients.
    I've searched for source but i can't find any.

    Can someone give me the basics on it, some source code?

    Thanks!
  8. Replies
    6
    Views
    1,773

    Yes, there's a prompt inside the program that...

    Yes, there's a prompt inside the program that will only appear if the user is connected. i know.. it would freak me out if a program connected to the internet without prompting, gotta love firewalls...
  9. Replies
    6
    Views
    1,773

    Yes it is for windows. No, i'm more interested...

    Yes it is for windows.

    No, i'm more interested in a general internet test, not just for RAS.

    It's for an auto-update module, if not connected it will not go on and that's it. because that would...
  10. Replies
    2
    Views
    1,303

    Checking for internet connection

    How can i test if the machine is connected to the internet, without windows prompting the user for a connection?

    starting winsock and trying to connect to some website at port 80 or something...
  11. Replies
    6
    Views
    1,773

    Checking for internet connection

    How can i test if the machine is connected to the internet, without windows prompting the user for a connection?

    starting winsock and trying to connect to some website at port 80 or something...
  12. Replies
    4
    Views
    1,693

    Why not use the atoi() function included in...

    Why not use the atoi() function included in stdlib?? anyways..
    i'm not even sure if the above function works.

    but you could always play knowing that the ASCII code 48 is 0. substract 48 to every...
  13. Replies
    22
    Views
    4,026

    nope.. :confused: i'll try your option but i...

    nope.. :confused: i'll try your option but i doubt it'll work *crossing fingers & opening dev-c++*...
  14. Replies
    22
    Views
    4,026

    OPENFILENAME ofn; ZeroMemory(&ofn, sizeof(ofn));...

    OPENFILENAME ofn;
    ZeroMemory(&ofn, sizeof(ofn));
    ofn.lStructSize = sizeof(ofn);
    ofn.hwndOwner = hwnd;


    The error comes in the 2nd line of the code and if that line is deleted the error will...
  15. Replies
    22
    Views
    4,026

    DEV-C++ case (a || b) interpretation... it's...

    DEV-C++ case (a || b) interpretation...

    it's weird... it only executes the case (a || b): statement if b is true but if it's a it goes to default...

    btw... i've also declared it outside of the...
  16. Replies
    22
    Views
    4,026

    Hehe yup i'm compiling as C++... anyway thanks...

    Hehe yup i'm compiling as C++... anyway thanks for trying to help.. and as to the switch statement and placement and such.. i've also tried putting it in the beggining of the code.. but nothing.. err...
  17. Replies
    22
    Views
    4,026

    &/$#&/$# COMPILER!!!!

    I KNEW IT!!!! IT'S THE COMPILER... i added this to the beggining of the source code:


    struct buffy
    {
    int yay;
    };

    buffy yp;
  18. Replies
    22
    Views
    4,026

    i just spotted an error in the code.. but it...

    i just spotted an error in the code.. but it won't solve anything regarding this problem.. =(

    if(WM_COMMAND == IDM_...)...

    ***
    change to
    ***
    if(wParam == IDM...)...
    .......
  19. Replies
    22
    Views
    4,026

    you might find this piece of the ocde a little...

    you might find this piece of the ocde a little akward but lol after recoding and recoding to see if the problem fixed this is what's left.. but it's acceptable hehe.. as long as ti works ='(....

    ...
  20. Replies
    22
    Views
    4,026

    yup =( it goes like this: OPENFILENAME...

    yup =( it goes like this:



    OPENFILENAME ofn;
    ZeroMemory(&ofn, sizeof(ofn));
    .....
    .........
  21. Replies
    22
    Views
    4,026

    OPENFILENAME ofn;

    hi there, i'm new to the forum, i've been visiting cp for a while and i decided to join the forum =).. plus i have a question lol..

    Ok the thing is, i have 3000+ lines of code, and the only thing...
Results 1 to 21 of 21