Click here to Skip to main content
15,898,134 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Wix installer Pin
ThatsAlok27-Nov-07 23:27
ThatsAlok27-Nov-07 23:27 
QuestionChanging the User account of a Service dynamically Pin
nlharshini27-Nov-07 21:38
nlharshini27-Nov-07 21:38 
QuestionInstall postgreSQL from MFC application? [modified] Pin
$uresh $hanmugam27-Nov-07 21:11
$uresh $hanmugam27-Nov-07 21:11 
QuestionRadio Buttons and Group Boxes Pin
XChibi27-Nov-07 21:10
XChibi27-Nov-07 21:10 
AnswerRe: Radio Buttons and Group Boxes Pin
Nelek27-Nov-07 22:16
protectorNelek27-Nov-07 22:16 
AnswerRe: Radio Buttons and Group Boxes Pin
Marimuthu.r27-Nov-07 22:39
Marimuthu.r27-Nov-07 22:39 
Questionchar** Pin
nitin327-Nov-07 21:05
nitin327-Nov-07 21:05 
AnswerRe: char** Pin
CPallini27-Nov-07 21:25
mveCPallini27-Nov-07 21:25 
char ** Buf[8];
int i,j;
for (i=0; i<8; i++)
{
  Buf[i] = new char * [10];
}
Buf[0][0] = "foo00";
Buf[0][1] = "foo01";
Buf[0][2] = "foo02";
//...
Buf[1][0] = "foo10";
//...
for (i=0; i<8; i++)
{
  delete [] Buf[i];
}


BTW: until you can't figure how to use it, don't use it.
BTW2: maybe hard-wired 8 as buffer size is not a good idea. Use an const instead.
Smile | :)



If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

GeneralRe: char** Pin
nitin327-Nov-07 22:30
nitin327-Nov-07 22:30 
GeneralRe: char** Pin
ThatsAlok27-Nov-07 22:52
ThatsAlok27-Nov-07 22:52 
GeneralRe: char** Pin
sumd27-Nov-07 23:06
sumd27-Nov-07 23:06 
AnswerRe: char** Pin
toxcct27-Nov-07 22:41
toxcct27-Nov-07 22:41 
GeneralRe: char** Pin
ThatsAlok27-Nov-07 22:51
ThatsAlok27-Nov-07 22:51 
GeneralRe: char** Pin
toxcct27-Nov-07 23:04
toxcct27-Nov-07 23:04 
GeneralRe: char** Pin
ThatsAlok27-Nov-07 23:26
ThatsAlok27-Nov-07 23:26 
AnswerRe: char** Pin
ThatsAlok27-Nov-07 22:50
ThatsAlok27-Nov-07 22:50 
GeneralRe: char** Pin
toxcct27-Nov-07 23:04
toxcct27-Nov-07 23:04 
GeneralRe: char** Pin
ThatsAlok27-Nov-07 23:30
ThatsAlok27-Nov-07 23:30 
QuestionProblem with IE7 Pin
sumd27-Nov-07 21:03
sumd27-Nov-07 21:03 
AnswerRe: Problem with IE7 Pin
ThatsAlok27-Nov-07 22:48
ThatsAlok27-Nov-07 22:48 
GeneralRe: Problem with IE7 Pin
sumd27-Nov-07 23:14
sumd27-Nov-07 23:14 
Questionthread pool Pin
Jhony george27-Nov-07 20:53
Jhony george27-Nov-07 20:53 
QuestionVC 6.0 math bug? Pin
2374127-Nov-07 20:29
2374127-Nov-07 20:29 
AnswerRe: VC 6.0 math bug? Pin
LOUIS Christian27-Nov-07 20:42
LOUIS Christian27-Nov-07 20:42 
AnswerRe: VC 6.0 math bug? Pin
Michael Dunn27-Nov-07 21:46
sitebuilderMichael Dunn27-Nov-07 21:46 

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.