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

C / C++ / MFC

 
AnswerRe: Include Looping? Pin
Alexandru Savescu23-May-03 5:59
Alexandru Savescu23-May-03 5:59 
GeneralResample IPicture Pin
Zizilamoroso23-May-03 4:00
Zizilamoroso23-May-03 4:00 
GeneralCFrameWnd client rect Pin
Chris Losinger23-May-03 3:53
professionalChris Losinger23-May-03 3:53 
GeneralRe: CFrameWnd client rect Pin
73Zeppelin23-May-03 4:20
73Zeppelin23-May-03 4:20 
GeneralSimple debugging question Pin
73Zeppelin23-May-03 3:02
73Zeppelin23-May-03 3:02 
GeneralRe: Simple debugging question Pin
Rage23-May-03 3:10
professionalRage23-May-03 3:10 
GeneralRe: Simple debugging question Pin
73Zeppelin23-May-03 3:30
73Zeppelin23-May-03 3:30 
GeneralRe: Simple debugging question Pin
73Zeppelin23-May-03 3:55
73Zeppelin23-May-03 3:55 
GeneralRe: Simple debugging question Pin
Rage23-May-03 4:31
professionalRage23-May-03 4:31 
GeneralRe: Simple debugging question Pin
jbarton23-May-03 3:39
jbarton23-May-03 3:39 
GeneralRe: Simple debugging question Pin
73Zeppelin23-May-03 3:57
73Zeppelin23-May-03 3:57 
GeneralTransparent control Pin
MemLeak23-May-03 2:46
MemLeak23-May-03 2:46 
GeneralRe: Transparent control Pin
Rage23-May-03 3:00
professionalRage23-May-03 3:00 
GeneralRe: Transparent control Pin
MemLeak23-May-03 3:11
MemLeak23-May-03 3:11 
GeneralRe: Transparent control Pin
basementman23-May-03 4:02
basementman23-May-03 4:02 
GeneralRe: Transparent control Pin
MemLeak23-May-03 4:53
MemLeak23-May-03 4:53 
GeneralAny link to a Free ebook about Drivers Pin
Fad B23-May-03 2:40
Fad B23-May-03 2:40 
GeneralHide passwords... Pin
rohit.dhamija23-May-03 2:11
rohit.dhamija23-May-03 2:11 
GeneralRe: Hide passwords... Pin
G. Steudtel23-May-03 3:12
G. Steudtel23-May-03 3:12 
GeneralRe: Hide passwords... Pin
jhwurmbach23-May-03 3:34
jhwurmbach23-May-03 3:34 
Generalerrors! Pin
flora_k23-May-03 0:59
flora_k23-May-03 0:59 
GeneralRe: errors! Pin
jhwurmbach23-May-03 1:05
jhwurmbach23-May-03 1:05 
flora_k wrote:
unsigned char NrTrlValues;
unsigned char location;
unsigned char perc;
unsigned char time;


These all are very probably meant to be pointers. That is what the compiler keeps telling you. The other errors are most probably coming from this one.

So please declare your variables as pointers to unsigned chars (instead of as unsigned char itself) and report back.

[EDIT]
Maybe using a string class like CString (of MFC) or std::string (plain standard C++) can help you.
And if writing a C++ program for Win32, you should never need to use malloc at all. In C++ use new and delete.
[/EDIT]


My opinions may have changed, but not the fact that I am right.
GeneralRe: errors! Pin
flora_k23-May-03 1:09
flora_k23-May-03 1:09 
GeneralRe: errors! Pin
jhwurmbach23-May-03 1:38
jhwurmbach23-May-03 1:38 
GeneralRe: errors! Pin
Rage23-May-03 1:47
professionalRage23-May-03 1:47 

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.