Since 4/26/2012 4:31:36 PM, alt.spam2 has written 2 articles and participated in 114 conversations. alt.spam2 signature: alt.spam2
alt.spam2's articles:
Items(2) /1
Difference between vc7.0 vc7.1 and vc.net1233 (10/8/2003 7:38:45 PM) comp.lang.c++ Hi, Does anyone know the difference between vc7.0, vc7.1 and .net. On the microsoft site and online stores I only see visual C++.net, yet on the spirit site I see references to vc7.0 and 7.1. Is VC++.net the s... Moonlit
Best lex/yacc for C++?1830 (10/8/2003 3:30:56 PM) comp.lang.c++ Hi, I am searching for the best lex and yacc combination (or something similar) that can be used in combination with C++ and that can contain C++ code. I have the regular flex/bison port working but then I, of... Moonlit
Need help with stl vectors (?)113 (12/14/2003 4:45:44 PM) comp.lang.c++ How do you get the whole line and put it in a vector from a txt file, I would like to first get a line, store it to the first element in a vector and then keep on doing this until the end of the file is reached... snyp_(5)
why doesnt this work?434 (12/14/2003 6:33:21 PM) comp.lang.c++ #ifndef PERSON_H #define PERSON_H #include #include #include class Person { protected: char name[12]; name = jamesbond; public: Person(); void Print(); };//close Person #endif ... developwebsites2(20)
Address of a result?833 (12/18/2003 6:03:47 PM) comp.lang.c++ I have a function that takes a pointer as an argument... for example: void myFunc(unsigned int * parameter) how can I call myFunc with the result of a function without defining a variable to hold the paramet... nope5(122)
What method of DB access is best from c++?417 (12/18/2003 7:10:48 PM) comp.lang.c++ I'm just coming back to C++ from a very long stint with VB. In VB I used ADO to access databases. Visual C++ supports ADO and a plethora of other methods. I'm trying to streamline my nasty learning curve and ... junk2351(8)
Testing if file open() command successful134 (12/18/2003 8:36:38 PM) comp.lang.c++ Hi, Does anyone know how to check if the ofstream open() command was successful. My program tries to open a file on a floppy disk and I want to ensure that the disk is present in the drive by checking if the op... columfoley(6)
stream in multiprocess (multithread) apps418 (12/19/2003 10:53:20 AM) comp.lang.c++ Hello. I have some function f(stream* out) that makes text-output into stream (*out) i.e. (*out)<<"Hello"<<endl;. The (*out) can be cout, ofstream, a strstream, etc. This function working in the background proc... shestero(13)
Error using ofstream close()243 (12/19/2003 10:57:53 AM) comp.lang.c++ Hi, I am trying to write data out to a file on floppy disk, If the disk is present in the drive the program runs fine and outputs the data correctly, however if the disk is not present in the drive, the progra... columfoley(6)
C++/MFC Graphics142 (12/20/2003 8:08:01 AM) comp.lang.c++ I'm working on a project that requires drawing binary trees, graphs and modular layouts. The user needs to have the ability to output these drawings to a file. A lot of the application has already been develope... statusmalusNOSPAM(1)
getline and substr432 (12/20/2003 2:39:56 PM) comp.lang.c++ Hallo, I've got 2 error msg, line 11 and 24. I don't understand both of them. Can someone type me in the normal language and help me here out? TI@ Wen #include #include #include using namespace std; int m... nieuwskees(13)
Counting Objects - Best Method622 (12/21/2003 8:33:43 AM) comp.lang.c++ Hi everyone, I've written some code that contains a class, and I want to track the number of instances of this class that have been created, eg.: "This is number xx object created." What is the most commonly a... anonemail1(32)