Click here to Skip to main content
15,922,533 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to use WIA in VC 2005 Pin
tgchuhan7-Sep-06 9:55
tgchuhan7-Sep-06 9:55 
AnswerRe: How to use WIA in VC 2005 Pin
led mike7-Sep-06 10:21
led mike7-Sep-06 10:21 
GeneralRe: How to use WIA in VC 2005 Pin
tgchuhan8-Sep-06 2:22
tgchuhan8-Sep-06 2:22 
GeneralRe: How to use WIA in VC 2005 Pin
led mike8-Sep-06 4:37
led mike8-Sep-06 4:37 
GeneralRe: How to use WIA in VC 2005 Pin
tgchuhan9-Sep-06 1:17
tgchuhan9-Sep-06 1:17 
GeneralRe: How to use WIA in VC 2005 Pin
led mike11-Sep-06 5:03
led mike11-Sep-06 5:03 
QuestionPropertyPage with ListCtrl Pin
DanYELL7-Sep-06 8:48
DanYELL7-Sep-06 8:48 
AnswerRe: PropertyPage with ListCtrl Pin
Jethro637-Sep-06 9:42
Jethro637-Sep-06 9:42 
GeneralRe: PropertyPage with ListCtrl Pin
DanYELL7-Sep-06 12:42
DanYELL7-Sep-06 12:42 
QuestionRe: PropertyPage with ListCtrl Pin
David Crow8-Sep-06 4:29
David Crow8-Sep-06 4:29 
QuestionRe: PropertyPage with ListCtrl Pin
David Crow8-Sep-06 4:30
David Crow8-Sep-06 4:30 
QuestionHow to extract "rich text" from a windows control? Pin
ed welch7-Sep-06 8:33
ed welch7-Sep-06 8:33 
AnswerRe: How to extract "rich text" from a windows control? Pin
Waldermort7-Sep-06 8:50
Waldermort7-Sep-06 8:50 
GeneralRe: How to extract "rich text" from a windows control? Pin
ed welch7-Sep-06 8:52
ed welch7-Sep-06 8:52 
GeneralRe: How to extract "rich text" from a windows control? Pin
ed welch7-Sep-06 10:24
ed welch7-Sep-06 10:24 
GeneralRe: How to extract "rich text" from a windows control? Pin
Naveen7-Sep-06 21:46
Naveen7-Sep-06 21:46 
AnswerRe: How to extract "rich text" from a windows control? Pin
ed welch7-Sep-06 13:55
ed welch7-Sep-06 13:55 
QuestionC++ Refactory Pin
knoxpointer7-Sep-06 8:04
knoxpointer7-Sep-06 8:04 
AnswerRe: C++ Refactory Pin
DaTxomin7-Sep-06 9:06
DaTxomin7-Sep-06 9:06 
QuestionProblems with realloc - heap corruption Pin
nadiric7-Sep-06 6:52
nadiric7-Sep-06 6:52 
AnswerRe: Problems with realloc - heap corruption Pin
nadiric7-Sep-06 7:03
nadiric7-Sep-06 7:03 
GeneralRe: Problems with realloc - heap corruption Pin
Waldermort7-Sep-06 7:20
Waldermort7-Sep-06 7:20 
GeneralRe: Problems with realloc - heap corruption Pin
nadiric7-Sep-06 7:24
nadiric7-Sep-06 7:24 
GeneralRe: Problems with realloc - heap corruption Pin
Waldermort7-Sep-06 7:28
Waldermort7-Sep-06 7:28 
Run your code in the debugger, open the call stack window, and watch. When your code calls that function, there will be something like _invalid_pointer shown in the window. realloc() will check the memory for problems before doing what it should. Somewhere before calling the function, you have written past the end of the array. Just step through your code and look out for the address in the error message, thats when you will find your problem.
AnswerRe: Problems with realloc - heap corruption Pin
Jun Du7-Sep-06 7:15
Jun Du7-Sep-06 7:15 

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.