Click here to Skip to main content
15,907,906 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Output to a text file? Pin
Michael Dunn31-Jan-03 19:46
sitebuilderMichael Dunn31-Jan-03 19:46 
GeneralRe: Output to a text file? Pin
DuFF1-Feb-03 5:35
DuFF1-Feb-03 5:35 
GeneralMFC Telnet applications Pin
Member 788819231-Jan-03 17:53
Member 788819231-Jan-03 17:53 
GeneralRe: MFC Telnet applications Pin
Nitron31-Jan-03 18:59
Nitron31-Jan-03 18:59 
GeneralRe: MFC Telnet applications Pin
Sakky31-Jan-03 19:55
Sakky31-Jan-03 19:55 
GeneralMFC Telnet applications Pin
Sakky31-Jan-03 17:53
Sakky31-Jan-03 17:53 
GeneralPig-Latin Translator Pin
arsenalgunners0131-Jan-03 17:46
arsenalgunners0131-Jan-03 17:46 
GeneralRe: Pig-Latin Translator Pin
Nick Parker31-Jan-03 18:11
protectorNick Parker31-Jan-03 18:11 
Constructors are for initializing member variables of a class instance, you should place the application specific code within a function that you call after construction, not during.

Ex:
class translate
{
public:
translate(){}
int Process();
};

int translate::Process()
{
<font color='green'>// application code here...</font>
}





Nick Parker

The only man who never makes a mistake is the man who never does anything. - Theodore Roosevelt


GeneralRe: Pig-Latin Translator Pin
Nitron31-Jan-03 19:00
Nitron31-Jan-03 19:00 
GeneralRe: Pig-Latin Translator Pin
arsenalgunners0131-Jan-03 20:15
arsenalgunners0131-Jan-03 20:15 
GeneralRe: Pig-Latin Translator Pin
trustno131-Jan-03 21:12
trustno131-Jan-03 21:12 
GeneralRe: Pig-Latin Translator Pin
arsenalgunners011-Feb-03 7:36
arsenalgunners011-Feb-03 7:36 
GeneralRe: Pig-Latin Translator Pin
trustno11-Feb-03 9:39
trustno11-Feb-03 9:39 
GeneralRe: Pig-Latin Translator Pin
Michael P Butler1-Feb-03 0:13
Michael P Butler1-Feb-03 0:13 
GeneralOverloading Vs overriding Pin
Jamala31-Jan-03 17:32
Jamala31-Jan-03 17:32 
GeneralRe: Overloading Vs overriding Pin
Nitron31-Jan-03 19:04
Nitron31-Jan-03 19:04 
GeneralRe: Overloading Vs overriding Pin
Michael Dunn31-Jan-03 19:50
sitebuilderMichael Dunn31-Jan-03 19:50 
GeneralRe: Overloading Vs overriding Pin
Erik Funkenbusch1-Feb-03 10:44
Erik Funkenbusch1-Feb-03 10:44 
GeneralRe: Overloading Vs overriding Pin
laue1-Feb-03 2:20
laue1-Feb-03 2:20 
GeneralA c++ question Pin
saad shah31-Jan-03 17:29
saad shah31-Jan-03 17:29 
GeneralRe: A c++ question Pin
Chris Losinger31-Jan-03 19:02
professionalChris Losinger31-Jan-03 19:02 
GeneralWiring in a couple of Radio Controls Pin
jimNLX31-Jan-03 16:05
jimNLX31-Jan-03 16:05 
GeneralRe: Wiring in a couple of Radio Controls Pin
Michael Dunn31-Jan-03 16:20
sitebuilderMichael Dunn31-Jan-03 16:20 
Generalupdate edit box Pin
dmbrubac31-Jan-03 13:36
professionaldmbrubac31-Jan-03 13:36 
GeneralRe: update edit box Pin
Michael Dunn31-Jan-03 14:45
sitebuilderMichael Dunn31-Jan-03 14:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.