Click here to Skip to main content
15,912,400 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Execute on Windows Shutdown Pin
Mike Nordell20-Jun-02 19:00
Mike Nordell20-Jun-02 19:00 
GeneralMenu Item Text Pin
20-Jun-02 5:14
suss20-Jun-02 5:14 
GeneralRe: Menu Item Text Pin
20-Jun-02 5:30
suss20-Jun-02 5:30 
GeneralRe: Menu Item Text Pin
Brian Delahunty20-Jun-02 6:13
Brian Delahunty20-Jun-02 6:13 
QuestionHow do i delete a record set??? Pin
TommyKnocker20-Jun-02 4:51
TommyKnocker20-Jun-02 4:51 
AnswerRe: How do i delete a record set??? Pin
Chad Koehler20-Jun-02 5:00
Chad Koehler20-Jun-02 5:00 
QuestionCan't i use two dimensional arrays with the new keyword? Pin
redeemer20-Jun-02 4:44
redeemer20-Jun-02 4:44 
AnswerRe: Can't i use two dimensional arrays with the new keyword? Pin
Chris Losinger20-Jun-02 4:54
professionalChris Losinger20-Jun-02 4:54 
ain't C++ great? Smile | :)

you'll have to do it something like this:

COLORREF ** pCol = new COLORREF *[horzres];
for (int i=0;i<horzres;i++)
  pCol[i] = new COLORREF[vertres];


-c


Garbage collection, making life better - for weenies!
Image Processing - just like mom used to make.

AnswerRe: Can't i use two dimensional arrays with the new keyword? Pin
Joaquín M López Muñoz20-Jun-02 6:46
Joaquín M López Muñoz20-Jun-02 6:46 
GeneralRe: Can't i use two dimensional arrays with the new keyword? Pin
redeemer20-Jun-02 8:44
redeemer20-Jun-02 8:44 
QuestionWhy an ID in CreateThread()? Pin
20-Jun-02 4:38
suss20-Jun-02 4:38 
AnswerRe: Why an ID in CreateThread()? Pin
redeemer20-Jun-02 4:51
redeemer20-Jun-02 4:51 
GeneralRe: Why an ID in CreateThread()? Pin
20-Jun-02 5:25
suss20-Jun-02 5:25 
AnswerRe: Why an ID in CreateThread()? Pin
20-Jun-02 6:55
suss20-Jun-02 6:55 
AnswerRe: Why an ID in CreateThread()? Pin
Joaquín M López Muñoz20-Jun-02 6:57
Joaquín M López Muñoz20-Jun-02 6:57 
GeneralRe: Why an ID in CreateThread()? Pin
moliate20-Jun-02 20:58
moliate20-Jun-02 20:58 
AnswerRe: Why an ID in CreateThread()? Pin
moliate20-Jun-02 20:42
moliate20-Jun-02 20:42 
GeneralProblem with loading resources at runtime Pin
Dean Goodman20-Jun-02 4:29
Dean Goodman20-Jun-02 4:29 
GeneralRe: Problem with loading resources at runtime Pin
Navin20-Jun-02 4:33
Navin20-Jun-02 4:33 
GeneralRe: Problem with loading resources at runtime Pin
Dean Goodman20-Jun-02 4:44
Dean Goodman20-Jun-02 4:44 
GeneralRe: Problem with loading resources at runtime Pin
-Dy21-Jun-02 4:10
-Dy21-Jun-02 4:10 
GeneralRe: Problem with loading resources at runtime Pin
Atlantys21-Jun-02 12:48
Atlantys21-Jun-02 12:48 
GeneralOutlook Add-in Pin
20-Jun-02 4:16
suss20-Jun-02 4:16 
QuestionHow do i get the vertical and horizontal resolution of the screen? Pin
redeemer20-Jun-02 4:03
redeemer20-Jun-02 4:03 
AnswerRe: How do i get the vertical and horizontal resolution of the screen? Pin
Chris Losinger20-Jun-02 4:19
professionalChris Losinger20-Jun-02 4:19 

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.