Click here to Skip to main content
15,887,485 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Pressing several buttons at once Pin
Nathan Holt at EMOM5-Oct-07 5:58
Nathan Holt at EMOM5-Oct-07 5:58 
GeneralRe: Pressing several buttons at once Pin
vSteve6-Oct-07 22:23
vSteve6-Oct-07 22:23 
GeneralRe: Pressing several buttons at once Pin
Nathan Holt at EMOM8-Oct-07 10:30
Nathan Holt at EMOM8-Oct-07 10:30 
GeneralRe: Pressing several buttons at once Pin
vSteve8-Oct-07 23:34
vSteve8-Oct-07 23:34 
QuestionHow to avoid 3rd party frame's vestiges on my app [modified] Pin
Nelek5-Oct-07 0:01
protectorNelek5-Oct-07 0:01 
QuestionClass Variable Initialization Pin
nitin34-Oct-07 23:32
nitin34-Oct-07 23:32 
AnswerRe: Class Variable Initialization Pin
Nelek4-Oct-07 23:43
protectorNelek4-Oct-07 23:43 
GeneralRe: Class Variable Initialization Pin
nitin34-Oct-07 23:58
nitin34-Oct-07 23:58 
void MyFunc()
{
TCHAR TBuf[ 512 ] = { '\0' } ;//this method initializes the array index 0 to 511 with null
}
//in the case of a class varibale i use the following method, is there any simple step to do the same ?
class MyClass
{
public :
TCHAR TBuf[ 512 ] ;
MyClass()
{
//
int i = 512 ;
while( i > 0 )
{
TBuf[ --i ] = '\0' ;
};
}
}

Thanks & Regards

GeneralRe: Class Variable Initialization Pin
ThatsAlok5-Oct-07 0:46
ThatsAlok5-Oct-07 0:46 
GeneralRe: Class Variable Initialization Pin
jhwurmbach5-Oct-07 0:53
jhwurmbach5-Oct-07 0:53 
GeneralRe: Class Variable Initialization Pin
Mark Salsbery5-Oct-07 6:03
Mark Salsbery5-Oct-07 6:03 
QuestionRe: Class Variable Initialization Pin
David Crow5-Oct-07 3:39
David Crow5-Oct-07 3:39 
QuestionHow to Create Process in new Desktop Pin
GauranG Shah4-Oct-07 23:17
GauranG Shah4-Oct-07 23:17 
AnswerRe: How to Create Process in new Desktop Pin
nitin34-Oct-07 23:35
nitin34-Oct-07 23:35 
GeneralRe: How to Create Process in new Desktop Pin
GauranG Shah5-Oct-07 0:03
GauranG Shah5-Oct-07 0:03 
QuestionRe: How to Create Process in new Desktop Pin
GauranG Shah5-Oct-07 0:35
GauranG Shah5-Oct-07 0:35 
QuestionLinking Errors Pin
kiranin4-Oct-07 22:49
kiranin4-Oct-07 22:49 
AnswerRe: Linking Errors Pin
Hamid_RT4-Oct-07 23:12
Hamid_RT4-Oct-07 23:12 
AnswerRe: Linking Errors Pin
ShilpiP5-Oct-07 0:11
ShilpiP5-Oct-07 0:11 
Questioninterview questions Pin
neelu77794-Oct-07 21:43
neelu77794-Oct-07 21:43 
AnswerRe: interview questions Pin
cp98764-Oct-07 21:52
cp98764-Oct-07 21:52 
AnswerRe: interview questions Pin
Hamid_RT4-Oct-07 23:14
Hamid_RT4-Oct-07 23:14 
GeneralRe: interview questions Pin
ThatsAlok5-Oct-07 0:45
ThatsAlok5-Oct-07 0:45 
GeneralRe: interview questions Pin
Hamid_RT5-Oct-07 0:53
Hamid_RT5-Oct-07 0:53 
AnswerRe: interview questions Pin
ShilpiP5-Oct-07 0:04
ShilpiP5-Oct-07 0:04 

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.