Click here to Skip to main content
15,921,660 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: My edit is not redrawing!? Pin
HENDRIK R6-Feb-03 23:00
HENDRIK R6-Feb-03 23:00 
GeneralRe: My edit is not redrawing!? Pin
Rickard Andersson206-Feb-03 23:47
Rickard Andersson206-Feb-03 23:47 
GeneralRe: My edit is not redrawing!? Pin
Rickard Andersson207-Feb-03 0:28
Rickard Andersson207-Feb-03 0:28 
Generaloutlook express config Pin
naradaji6-Feb-03 21:11
naradaji6-Feb-03 21:11 
GeneralRe: outlook express config Pin
OBRon7-Feb-03 3:53
OBRon7-Feb-03 3:53 
GeneralRe: outlook express config Pin
naradaji7-Feb-03 4:42
naradaji7-Feb-03 4:42 
QuestionHow to serialize (MFC) Image? Pin
Roman Shchugarev6-Feb-03 19:43
Roman Shchugarev6-Feb-03 19:43 
AnswerRe: How to serialize (MFC) Image? Pin
Chris Losinger6-Feb-03 19:56
professionalChris Losinger6-Feb-03 19:56 
GeneralRe: How to serialize (MFC) Image? Pin
Roman Shchugarev6-Feb-03 20:34
Roman Shchugarev6-Feb-03 20:34 
GeneralRectangle Pin
satyavasu6-Feb-03 19:13
satyavasu6-Feb-03 19:13 
GeneralFixing Memory Leaks Pin
abhinarulkar6-Feb-03 18:18
abhinarulkar6-Feb-03 18:18 
GeneralRe: Fixing Memory Leaks Pin
Joaquín M López Muñoz6-Feb-03 21:15
Joaquín M López Muñoz6-Feb-03 21:15 
GeneralMFC Tutor Pin
shanksprasad6-Feb-03 17:42
shanksprasad6-Feb-03 17:42 
GeneralRe: MFC Tutor Pin
Chris Richardson6-Feb-03 18:20
Chris Richardson6-Feb-03 18:20 
GeneralRe: MFC Tutor Pin
shanksprasad7-Feb-03 1:33
shanksprasad7-Feb-03 1:33 
GeneralRe: MFC Tutor Pin
Chris Richardson7-Feb-03 9:36
Chris Richardson7-Feb-03 9:36 
GeneralDownload file from http using mfc Pin
Anonymous6-Feb-03 17:29
Anonymous6-Feb-03 17:29 
GeneralRe: Download file from http using mfc Pin
OBRon7-Feb-03 4:05
OBRon7-Feb-03 4:05 
GeneralNeed help in using CryptoAPI Pin
Vu Truong6-Feb-03 17:34
Vu Truong6-Feb-03 17:34 
GeneralRe: Need help in using CryptoAPI Pin
karl_w6-Feb-03 19:48
karl_w6-Feb-03 19:48 
GeneralCTreeCtrl selects item by itself!!! Pin
Mr.Freeze6-Feb-03 15:19
Mr.Freeze6-Feb-03 15:19 
GeneralEasy question: Pin
Sunnygirl6-Feb-03 13:35
Sunnygirl6-Feb-03 13:35 
GeneralRe: Easy question: Pin
Chris Losinger6-Feb-03 14:09
professionalChris Losinger6-Feb-03 14:09 
GeneralRe: Easy question: Pin
georgiek506-Feb-03 14:18
georgiek506-Feb-03 14:18 
GeneralRe: Easy question: Pin
Harold Bamford7-Feb-03 5:49
Harold Bamford7-Feb-03 5:49 
georgiek50 wrote:
If you mean clearing out the array do this: r1[0] = '\0'; (All clear!)

This assumes you are using r1 as a character string rather than an array of bytes.

If you want to "clear out" an array, try:

memset(r1,0,1000);  // where 1000 is the number of bytes in r1

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.