Click here to Skip to main content
16,005,038 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalproblem in Hello World example Pin
n7yahoo8-Apr-03 3:25
n7yahoo8-Apr-03 3:25 
GeneralRe: problem in Hello World example Pin
Maximilien8-Apr-03 3:42
Maximilien8-Apr-03 3:42 
GeneralRe: problem in Hello World example Pin
n7yahoo8-Apr-03 20:52
n7yahoo8-Apr-03 20:52 
Generaleasy question about CFile Pin
Martin_Viet8-Apr-03 2:58
Martin_Viet8-Apr-03 2:58 
GeneralRe: easy question about CFile Pin
Mike Zinni8-Apr-03 3:21
Mike Zinni8-Apr-03 3:21 
GeneralRe: easy question about CFile Pin
Pavel Klocek8-Apr-03 3:27
Pavel Klocek8-Apr-03 3:27 
GeneralRe: easy question about CFile Pin
puzzolino8-Apr-03 3:30
puzzolino8-Apr-03 3:30 
GeneralRe: easy question about CFile Pin
Cedric Moonen8-Apr-03 3:36
Cedric Moonen8-Apr-03 3:36 
First, if you use the read function like you did, it will copy byte by byte what it reads from the file at the adress of your linea class so it will probably erase important data inside your class. Use a char buffer instead !!

char Buffer[1025];<br />
arch.Read(Buffer,1024);


This will copy the 1024 firsts bytes from your file in the buffer (I suppose that the data in the file are characters).

Second, it will read the BYTES (!!!) from your file so if you have several lines in it, it will copy all of them in the buffer (and the end of line char also)!!! Perhaps what you can do is read the file characters by characters and test if it's an end of line!!
GeneralRe: easy question about CFile Pin
Anonymous8-Apr-03 4:03
Anonymous8-Apr-03 4:03 
GeneralRe: easy question about CFile Pin
Martin_Viet8-Apr-03 4:46
Martin_Viet8-Apr-03 4:46 
GeneralOnItemChanged runs several times! Pin
ns8-Apr-03 2:44
ns8-Apr-03 2:44 
GeneralRe: OnItemChanged runs several times! Pin
Joan M8-Apr-03 3:22
professionalJoan M8-Apr-03 3:22 
GeneralRe: OnItemChanged runs several times! Pin
ns8-Apr-03 3:30
ns8-Apr-03 3:30 
GeneralRe: OnItemChanged runs several times! Pin
Mike Upton8-Apr-03 3:29
Mike Upton8-Apr-03 3:29 
GeneralRe: OnItemChanged runs several times! Pin
ns8-Apr-03 4:01
ns8-Apr-03 4:01 
GeneralRe: OnItemChanged runs several times! Pin
Mike Upton8-Apr-03 4:27
Mike Upton8-Apr-03 4:27 
GeneralRAS AutoDial Settings problem Pin
Mark Otway8-Apr-03 1:00
Mark Otway8-Apr-03 1:00 
GeneralBmp to jpg convertion Pin
Mahesh Varma8-Apr-03 0:49
Mahesh Varma8-Apr-03 0:49 
GeneralRe: Bmp to jpg convertion Pin
Anonymous8-Apr-03 1:40
Anonymous8-Apr-03 1:40 
GeneralRe: Bmp to jpg convertion Pin
Chris Losinger8-Apr-03 1:42
professionalChris Losinger8-Apr-03 1:42 
GeneralRe: Bmp to jpg convertion Pin
Dudi Avramov8-Apr-03 1:54
Dudi Avramov8-Apr-03 1:54 
GeneralRe: Bmp to jpg convertion Pin
RaajaOfSelf9-Apr-03 13:08
RaajaOfSelf9-Apr-03 13:08 
GeneralList exported function in DLL Pin
AnTri8-Apr-03 0:22
AnTri8-Apr-03 0:22 
GeneralRe: List exported function in DLL Pin
vmaltsev8-Apr-03 5:06
vmaltsev8-Apr-03 5:06 
GeneralRe: List exported function in DLL Pin
AnTri8-Apr-03 11:04
AnTri8-Apr-03 11:04 

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.