Recent content by CyrusTCH

  1. C

    PHP/IE6 and Cookies

    php's setcookie() must be executed before any output is sent to the browser.
  2. C

    UNIX socket programming help

    Hi everyone... I am working on a unix socket programming project. I need to create a server that uses UDP instead of TCP. I have already created a very simple server and client. The client connect to localhost with some strings and the server echos. This thing works fine when both the server and...
  3. C

    Java question

    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  4. C

    Accepted to Graduate school today.

    congrats!:cool: I am a CS undergrad at SUNY Binghamton right now.
  5. C

    Labtec LVA-8012 Headphones with Microphone $8.99+S&H $2.93

    i believe you didn't select the quantity...
  6. C

    Real media question?

    Jet-Audio supports rm also COWON
  7. C

    Any good Data Strucuture books for C++?

    it is a very good one. clear explanations...suitable examples... yeah it has a few things "left for the readers for exercise" but those can be done if you read that chapter one of my coworkers at work (in a college) recommeneded this book to the Computer Dept. and now they are using it in the...
  8. C

    Any good Data Strucuture books for C++?

    i use this one: C++ An Introduction to Data Structures by Larry Nyhoff Link
  9. C

    C++ prob...

    to do some file I/O you first have to : #include <fstream.h> then you can make two objects which are suppose to work like cin and cout: ofstream outfile; // works like cout ifstream infile; // works like cin then you can use them...
  10. C

    C++ prob...

    the while loop looks like this while(!infile.eof()) { infile >> value; if (value > 0) { outfilePos << value << " "; } else if (value == 0) { counter++; } else { outfileNeg << value << " "; } }
  11. C

    visual basic programming questions

    isnumeric() to set the startup form, go to Project->ProjectX Properties
  12. C

    dunno how to pass a char array as a reference

    #include <iostream> #include <string> using namespace std; void test(char* umm[]) { cout << "umm: " << *umm << endl; char *temp; temp = new char; temp = "Two"; *umm = temp; } void main(void) { char *temp; temp = new char[100]; temp = "One"; test(&temp); cout << endl << "umm...
  13. C

    dunno how to pass a char array as a reference

    arrays are passed by reference by default
  14. C

    C++ question, please help.

    const WumpusList & WumpusList::operator=(const WumpusList &w)
  15. C

    ok how do I fix it this time

    take out the (((((((align="LEFT"))))))) thing within the first table tag i guess thats what you are looking for