Click here to Skip to main content
15,904,926 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralCorrect approach for SysAllocString/SysFreeString Pin
Paul Farry27-Oct-02 17:40
professionalPaul Farry27-Oct-02 17:40 
GeneralRe: Correct approach for SysAllocString/SysFreeString Pin
ian mariano27-Oct-02 21:45
ian mariano27-Oct-02 21:45 
Generaladding an image II Pin
Mel Feik27-Oct-02 17:17
Mel Feik27-Oct-02 17:17 
GeneralRe: adding an image II Pin
Paul M Watt27-Oct-02 18:46
mentorPaul M Watt27-Oct-02 18:46 
GeneralRe: adding an image II Pin
Mel Feik27-Oct-02 18:52
Mel Feik27-Oct-02 18:52 
GeneralHelp with loading files Pin
Steven M Hunt27-Oct-02 16:16
Steven M Hunt27-Oct-02 16:16 
GeneralRe: Help with loading files Pin
Shog927-Oct-02 16:24
sitebuilderShog927-Oct-02 16:24 
GeneralHere's the code Pin
Steven M Hunt27-Oct-02 16:56
Steven M Hunt27-Oct-02 16:56 
Well, it patially works:
HANDLE hFile;
hFile = CreateFile("C:\\settings.txt", GENERIC_READ, 0, NULL, OPEN_EXISTING, NULL, NULL);
DWORD size;
size = GetFileSize(hFile, NULL);
char *FileText;
FileText = new char[size+1];
DWORD Readd;
ReadFile(hFile, FileText, size+1, &Readd, NULL);
CloseHandle(hFile);

There's still a group of weird characters in the array:
Actual File Text:
Hello
Returns in edit field:
HelloÍýýýý

How do I get those other useless characters off of the array?

-- Steve
GeneralRe: Here's the code Pin
Shog927-Oct-02 18:11
sitebuilderShog927-Oct-02 18:11 
GeneralRe: Help with loading files Pin
Christian Graus27-Oct-02 17:37
protectorChristian Graus27-Oct-02 17:37 
GeneralRe: Help with loading files Pin
carrie28-Oct-02 0:58
carrie28-Oct-02 0:58 
QuestionIWebBrowser2 from IHTMLWindow2 - ? Pin
Alex Cramer27-Oct-02 16:01
Alex Cramer27-Oct-02 16:01 
Generalhelp Pin
imran_rafique27-Oct-02 15:02
imran_rafique27-Oct-02 15:02 
GeneralRe: help Pin
Christian Graus27-Oct-02 15:04
protectorChristian Graus27-Oct-02 15:04 
GeneralA notepad-like class... Pin
Mr.Freeze27-Oct-02 14:27
Mr.Freeze27-Oct-02 14:27 
GeneralRe: A notepad-like class... Pin
Christian Graus27-Oct-02 14:46
protectorChristian Graus27-Oct-02 14:46 
GeneralRe: A notepad-like class... Pin
Mr.Freeze27-Oct-02 17:10
Mr.Freeze27-Oct-02 17:10 
Generalstupid beginner Pin
Anonymous27-Oct-02 13:33
Anonymous27-Oct-02 13:33 
GeneralRe: stupid beginner Pin
Maximilien27-Oct-02 13:59
Maximilien27-Oct-02 13:59 
GeneralRe: stupid beginner Pin
Anonymous27-Oct-02 14:05
Anonymous27-Oct-02 14:05 
GeneralRe: stupid beginner Pin
Christian Graus27-Oct-02 14:21
protectorChristian Graus27-Oct-02 14:21 
GeneralRe: stupid beginner Pin
Anonymous27-Oct-02 17:32
Anonymous27-Oct-02 17:32 
GeneralRe: stupid beginner Pin
Christian Graus27-Oct-02 17:34
protectorChristian Graus27-Oct-02 17:34 
GeneralEnableToolTips for view (doc/view) affects main toolbar tooltips!? :\ Pin
Janeko27-Oct-02 12:59
Janeko27-Oct-02 12:59 
GeneralCDockContext Pin
MaTrIX2k227-Oct-02 11:50
MaTrIX2k227-Oct-02 11:50 

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.