Click here to Skip to main content
15,900,108 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How can I use ReadFile() and WriteFile () Pin
louis30-Jun-03 2:35
louis30-Jun-03 2:35 
AnswerRe: How can I use ReadFile() and WriteFile () Pin
valikac28-Jun-03 6:57
valikac28-Jun-03 6:57 
GeneralPowerPoint File Processing w/out office automation? $$$ Pin
RickGavin27-Jun-03 12:46
RickGavin27-Jun-03 12:46 
GeneralRe: PowerPoint File Processing w/out office automation? $$$ Pin
Ryan Binns27-Jun-03 17:03
Ryan Binns27-Jun-03 17:03 
GeneralMatrix! HELP!!!! Pin
Sunnygirl27-Jun-03 11:23
Sunnygirl27-Jun-03 11:23 
GeneralRe: Matrix! HELP!!!! Pin
valikac27-Jun-03 11:27
valikac27-Jun-03 11:27 
GeneralRe: Matrix! HELP!!!! Pin
Anonymous28-Jun-03 9:28
Anonymous28-Jun-03 9:28 
GeneralRe: Matrix! HELP!!!! Pin
valikac28-Jun-03 9:37
valikac28-Jun-03 9:37 
Okay. Here is an example of a two-dimensional array of char using dynamica allocation.

unsigned int nSize = 100;
char *text = new char*[nSize]

for (unsigned int i = 0; i < nSize; ++i)
text[i] = new char[nSize];

...
// Deallocation

Kuphryn
GeneralRe: Matrix! HELP!!!! Pin
Dominik Reichl27-Jun-03 20:59
Dominik Reichl27-Jun-03 20:59 
GeneralRe: Matrix! HELP!!!! Pin
Anonymous28-Jun-03 9:29
Anonymous28-Jun-03 9:29 
GeneralGetting the rect of the text in a Static Pin
Tommy2k27-Jun-03 11:21
Tommy2k27-Jun-03 11:21 
GeneralRe: Getting the rect of the text in a Static Pin
basementman27-Jun-03 11:41
basementman27-Jun-03 11:41 
GeneralRe: Getting the rect of the text in a Static Pin
Tommy2k27-Jun-03 11:58
Tommy2k27-Jun-03 11:58 
GeneralRe: Getting the rect of the text in a Static Pin
John M. Drescher27-Jun-03 12:33
John M. Drescher27-Jun-03 12:33 
GeneralRe: Getting the rect of the text in a Static Pin
Tommy2k27-Jun-03 12:38
Tommy2k27-Jun-03 12:38 
GeneralRe: Getting the rect of the text in a Static Pin
valikac27-Jun-03 11:42
valikac27-Jun-03 11:42 
GeneralRead a line from a file HANDLE Pin
Blueapples27-Jun-03 11:14
Blueapples27-Jun-03 11:14 
GeneralRe: Read a line from a file HANDLE Pin
basementman27-Jun-03 11:43
basementman27-Jun-03 11:43 
GeneralRe: Read a line from a file HANDLE Pin
Blueapples27-Jun-03 12:00
Blueapples27-Jun-03 12:00 
GeneralRe: Read a line from a file HANDLE Pin
Toni7827-Jun-03 12:15
Toni7827-Jun-03 12:15 
GeneralRe: Read a line from a file HANDLE Pin
od@ananzi.co.za15-Sep-03 9:33
od@ananzi.co.za15-Sep-03 9:33 
QuestionMaking an MFC program? Pin
DaveE9th27-Jun-03 10:50
DaveE9th27-Jun-03 10:50 
AnswerRe: Making an MFC program? Pin
Toni7827-Jun-03 12:18
Toni7827-Jun-03 12:18 
GeneralRe: Making an MFC program? Pin
DaveE9th27-Jun-03 19:24
DaveE9th27-Jun-03 19:24 
GeneralRe: Making an MFC program? Pin
Toni7828-Jun-03 9:26
Toni7828-Jun-03 9:26 

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.