Click here to Skip to main content
15,910,471 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: HELP! Visual C++ and Windows graphics Pin
kk.tvm14-Nov-05 21:53
kk.tvm14-Nov-05 21:53 
QuestionCreating new classes Pin
jpMFC14-Nov-05 15:06
jpMFC14-Nov-05 15:06 
AnswerRe: Creating new classes Pin
Christian Graus14-Nov-05 15:24
protectorChristian Graus14-Nov-05 15:24 
AnswerRe: Creating new classes Pin
Owner drawn14-Nov-05 20:23
Owner drawn14-Nov-05 20:23 
QuestionInterrupting a long running computation job Pin
syscwl14-Nov-05 13:07
syscwl14-Nov-05 13:07 
AnswerRe: Interrupting a long running computation job Pin
David Crow14-Nov-05 16:39
David Crow14-Nov-05 16:39 
Questionhow to install modem .inf file in windows Pin
Grizzly14-Nov-05 12:47
Grizzly14-Nov-05 12:47 
AnswerRe: how to install modem .inf file in windows Pin
Grizzly14-Nov-05 22:39
Grizzly14-Nov-05 22:39 
QuestionConversion from BSTR to key in STL map Pin
itkid14-Nov-05 10:14
itkid14-Nov-05 10:14 
AnswerRe: Conversion from BSTR to key in STL map Pin
Garth J Lancaster14-Nov-05 10:24
professionalGarth J Lancaster14-Nov-05 10:24 
GeneralRe: Conversion from BSTR to key in STL map Pin
itkid14-Nov-05 11:17
itkid14-Nov-05 11:17 
GeneralRe: Conversion from BSTR to key in STL map Pin
Garth J Lancaster14-Nov-05 11:19
professionalGarth J Lancaster14-Nov-05 11:19 
GeneralRe: Conversion from BSTR to key in STL map Pin
itkid14-Nov-05 11:32
itkid14-Nov-05 11:32 
GeneralRe: Conversion from BSTR to key in STL map Pin
Garth J Lancaster14-Nov-05 11:41
professionalGarth J Lancaster14-Nov-05 11:41 
AnswerRe: Conversion from BSTR to key in STL map Pin
Christian Graus14-Nov-05 12:37
protectorChristian Graus14-Nov-05 12:37 
QuestionShow color gradient in fullscreen - Win32 Pin
Emmanuel Arun Vinod14-Nov-05 9:27
Emmanuel Arun Vinod14-Nov-05 9:27 
AnswerRe: Show color gradient in fullscreen - Win32 Pin
Emmanuel Arun Vinod14-Nov-05 19:57
Emmanuel Arun Vinod14-Nov-05 19:57 
QuestionCreateFile question Pin
Manu_8114-Nov-05 8:38
Manu_8114-Nov-05 8:38 
AnswerRe: CreateFile question Pin
Blake Miller14-Nov-05 9:23
Blake Miller14-Nov-05 9:23 
GeneralRe: CreateFile question Pin
Manu_8114-Nov-05 11:03
Manu_8114-Nov-05 11:03 
GeneralRe: CreateFile question Pin
Blake Miller14-Nov-05 11:20
Blake Miller14-Nov-05 11:20 
You need to set the file pointer to the end of the file before writing to it if the file already exists. Otherwise, each time you open the file, the 'writing' will start at the very beginning of the file.

This will set file pointer to end of file, so you can 'append':

SetFilePointer(hOp, 0, NULL, FILE_END);
QuestionHow to add scroll bar in the child windows in MDI with Visual c++ 6.0 Pin
HMM_VC14-Nov-05 6:56
HMM_VC14-Nov-05 6:56 
QuestionError while building Pin
celllllllll14-Nov-05 5:39
celllllllll14-Nov-05 5:39 
AnswerRe: Error while building Pin
Blake Miller14-Nov-05 9:25
Blake Miller14-Nov-05 9:25 
QuestionVS.Net How to include a user defined variable in a setup project Pin
gkamendje14-Nov-05 5:33
gkamendje14-Nov-05 5:33 

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.