Click here to Skip to main content
15,889,527 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: a question of struct copys Pin
«_Superman_»11-May-10 7:15
professional«_Superman_»11-May-10 7:15 
AnswerRe: a question of struct copys Pin
Luc Pattyn11-May-10 8:06
sitebuilderLuc Pattyn11-May-10 8:06 
Questioncould some one give me a detail of this the result??I don not know why,more detail more better Pin
wbgxx11-May-10 5:23
wbgxx11-May-10 5:23 
AnswerRe: could some one give me a detail of this the result??I don not know why,more detail more better Pin
Code-o-mat11-May-10 5:54
Code-o-mat11-May-10 5:54 
AnswerRe: could some one give me a detail of this the result??I don not know why,more detail more better Pin
«_Superman_»11-May-10 7:30
professional«_Superman_»11-May-10 7:30 
AnswerRe: could some one give me a detail of this the result??I don not know why,more detail more better Pin
wbgxx11-May-10 12:42
wbgxx11-May-10 12:42 
GeneralRe: could some one give me a detail of this the result??I don not know why,more detail more better Pin
Iain Clarke, Warrior Programmer11-May-10 23:00
Iain Clarke, Warrior Programmer11-May-10 23:00 
QuestionTooltip Flashing Pin
Steve Thresher11-May-10 4:48
Steve Thresher11-May-10 4:48 
AnswerRe: Tooltip Flashing Pin
Code-o-mat11-May-10 5:38
Code-o-mat11-May-10 5:38 
QuestionHow to force an 'Alt' key stroke without keyboard? (MFC) [modified] Pin
Software200711-May-10 4:22
Software200711-May-10 4:22 
AnswerRe: How to force an 'Alt' key stroke without keyboard? (MFC) [modified] Pin
Code-o-mat11-May-10 5:34
Code-o-mat11-May-10 5:34 
GeneralRe: How to force an 'Alt' key stroke without keyboard? (MFC) Pin
Software200711-May-10 5:52
Software200711-May-10 5:52 
GeneralRe: How to force an 'Alt' key stroke without keyboard? (MFC) Pin
Code-o-mat11-May-10 5:56
Code-o-mat11-May-10 5:56 
QuestionMy progremmer can't run,why?? Pin
wbgxx11-May-10 4:17
wbgxx11-May-10 4:17 
AnswerRe: My progremmer can't run,why?? Pin
Cedric Moonen11-May-10 4:18
Cedric Moonen11-May-10 4:18 
GeneralRe: My progremmer can't run,why?? Pin
wbgxx11-May-10 4:27
wbgxx11-May-10 4:27 
GeneralRe: My progremmer can't run,why?? PinPopular
Cedric Moonen11-May-10 4:33
Cedric Moonen11-May-10 4:33 
JokeRe: My progremmer can't run,why?? Pin
CPallini11-May-10 11:44
mveCPallini11-May-10 11:44 
AnswerRe: My progremmer can't run,why?? Pin
Covean11-May-10 4:33
Covean11-May-10 4:33 
In your constructor you set buffer to NULL.
In your main function you just create an instance of CBuffer and call SaveString.
SaveString accesses your buffer (what is NULL), so you get an access violation.


int main () 
{ 
  CBuffer buffer1; 
  buffer1.Allocate(4096);   // allocate some buffer for your string!
  buffer1.SaveString("Microsoft"); 
  printf("%s", buffer1.GetBuffer()); 
  return 0;
}

Greetings
Covean

AnswerRe: My progremmer can't run,why?? Pin
Tim Craig11-May-10 17:34
Tim Craig11-May-10 17:34 
QuestionRound button with image Pin
AbhiHcl11-May-10 4:16
AbhiHcl11-May-10 4:16 
QuestionUnable to CreateFileMapping for Elivated User on Windows7 Version or Windows Vista Pin
janaswamy uday11-May-10 3:54
janaswamy uday11-May-10 3:54 
QuestionRe: Unable to CreateFileMapping for Elivated User on Windows7 Version or Windows Vista Pin
Randor 11-May-10 15:46
professional Randor 11-May-10 15:46 
Questionmy strcpy funcution! Pin
wbgxx11-May-10 3:47
wbgxx11-May-10 3:47 
AnswerRe: my strcpy funcution! Pin
wbgxx11-May-10 3:49
wbgxx11-May-10 3:49 

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.