Click here to Skip to main content
15,914,066 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Current Data and time as string Pin
Aaron Schaefer18-Jul-02 9:00
Aaron Schaefer18-Jul-02 9:00 
GeneralIXMLDOMDocument Question... Pin
Tzoockee18-Jul-02 3:27
Tzoockee18-Jul-02 3:27 
GeneralRe: IXMLDOMDocument Question... Pin
Stuart Dootson18-Jul-02 9:04
professionalStuart Dootson18-Jul-02 9:04 
QuestionHTML Views ? Pin
Jon Hulatt18-Jul-02 3:25
Jon Hulatt18-Jul-02 3:25 
AnswerRe: HTML Views ? Pin
benjymous18-Jul-02 5:59
benjymous18-Jul-02 5:59 
GeneralMs Word Automation Hell... Pin
Braulio Dez18-Jul-02 3:15
Braulio Dez18-Jul-02 3:15 
GeneralCMenu::AppendMenu and CommandID's Pin
Anonymous18-Jul-02 2:57
Anonymous18-Jul-02 2:57 
GeneralFile overwriting... Pin
Raphael Kindt18-Jul-02 2:54
Raphael Kindt18-Jul-02 2:54 
Hi,

I want to overwrite 32 caracters in a text file...
For the moment I do :
CStdioFile newFile;
//
// Open in Read/Write mode, etc...
//
newFile.SeekToBegin();
for(i = 0; i < 9; i++) {  // set pointer position to 9th line (32 caracters)
   if(!newFile.ReadString(str, MAX_BUFFER_SIZE)) {
      MessageBox("End of file prematurely detected");
      return;
   }
}
newFile.WriteString(strCRC + "\n");  // overwrite the 9th line (32 caracters)
newFile.Close();

but this doesn't work... Confused | :confused:
I try to understand... Anybody can help me ?
Thanks in advance.


Hello World!!! Smile | :)
from Raphaël
GeneralRe: File overwriting... Pin
Anonymous18-Jul-02 3:04
Anonymous18-Jul-02 3:04 
GeneralRe: File overwriting... Pin
Raphael Kindt18-Jul-02 3:08
Raphael Kindt18-Jul-02 3:08 
GeneralRe: File overwriting... Pin
Anonymous18-Jul-02 3:26
Anonymous18-Jul-02 3:26 
GeneralRe: File overwriting... Pin
Fredrik Skog18-Jul-02 3:29
Fredrik Skog18-Jul-02 3:29 
GeneralRe: File overwriting... Pin
Raphael Kindt18-Jul-02 3:39
Raphael Kindt18-Jul-02 3:39 
GeneralRe: File overwriting... Pin
Fredrik Skog18-Jul-02 3:43
Fredrik Skog18-Jul-02 3:43 
GeneralRe: File overwriting... Pin
Raphael Kindt18-Jul-02 3:52
Raphael Kindt18-Jul-02 3:52 
GeneralRe: File overwriting... Pin
Fredrik Skog18-Jul-02 4:01
Fredrik Skog18-Jul-02 4:01 
GeneralRe: File overwriting... Pin
Fredrik Skog18-Jul-02 4:16
Fredrik Skog18-Jul-02 4:16 
GeneralRe: File overwriting... Pin
Raphael Kindt18-Jul-02 4:32
Raphael Kindt18-Jul-02 4:32 
GeneralRe: File overwriting... Pin
Raphael Kindt18-Jul-02 4:13
Raphael Kindt18-Jul-02 4:13 
GeneralRe: File overwriting... Pin
Raphael Kindt18-Jul-02 4:48
Raphael Kindt18-Jul-02 4:48 
GeneralRe: File overwriting... Pin
Bill Wilson18-Jul-02 8:42
Bill Wilson18-Jul-02 8:42 
GeneralRe: File overwriting... Pin
Raphael Kindt18-Jul-02 21:05
Raphael Kindt18-Jul-02 21:05 
QuestionChange the length of bitmap image arbitrary? Pin
chen18-Jul-02 2:39
chen18-Jul-02 2:39 
AnswerRe: Change the length of bitmap image arbitrary? Pin
includeh1018-Jul-02 5:04
includeh1018-Jul-02 5:04 
GeneralRe: Change the length of bitmap image arbitrary? Pin
chen18-Jul-02 19:58
chen18-Jul-02 19:58 

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.