Click here to Skip to main content
15,894,539 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Disable desktop properties Pin
ThatsAlok14-Jul-04 20:57
ThatsAlok14-Jul-04 20:57 
GeneralCreateNamedPipe permission question Pin
Anonymous14-Jul-04 4:08
Anonymous14-Jul-04 4:08 
Questionhow to validate access rights of a user on a folder?? Pin
rmmr14-Jul-04 3:43
rmmr14-Jul-04 3:43 
AnswerRe: how to validate access rights of a user on a folder?? Pin
vcplusplus14-Jul-04 4:13
vcplusplus14-Jul-04 4:13 
GeneralRe: how to validate access rights of a user on a folder?? Pin
rmmr14-Jul-04 4:41
rmmr14-Jul-04 4:41 
GeneralCString performance Pin
NMiceli14-Jul-04 3:42
NMiceli14-Jul-04 3:42 
GeneralRe: CString performance Pin
Maximilien14-Jul-04 4:08
Maximilien14-Jul-04 4:08 
GeneralRe: CString performance Pin
wb14-Jul-04 4:51
wb14-Jul-04 4:51 
it depends on how you use it! Smile | :)

CString is realy OK, the only thing
you should do is, if you pass a CString
as a parameter, pass it as const CString&
and dont an a lot of small datachungs
to a CString in a loop
int n=0;
CString dummy;
while(n<10000) {
 dummy+=(char)((n%30)+30);
 ++n;
}

QuestionAfxSetAppName( )? Pin
lucy14-Jul-04 3:33
lucy14-Jul-04 3:33 
AnswerRe: AfxSetAppName( )? Pin
Wes Aday14-Jul-04 4:39
professionalWes Aday14-Jul-04 4:39 
GeneralRe: AfxSetAppName( )? Pin
lucy14-Jul-04 5:39
lucy14-Jul-04 5:39 
AnswerRe: AfxSetAppName( )? Pin
Member 1382467115-Dec-22 7:37
Member 1382467115-Dec-22 7:37 
GeneralSend At command Pin
mark18214-Jul-04 3:32
mark18214-Jul-04 3:32 
GeneralRe: Send At command Pin
palbano14-Jul-04 5:36
palbano14-Jul-04 5:36 
GeneralRe: Send At command Pin
mark18215-Jul-04 2:48
mark18215-Jul-04 2:48 
GeneralCFileDialog - customize Pin
john john mackey14-Jul-04 3:30
john john mackey14-Jul-04 3:30 
GeneralRe: CFileDialog - customize Pin
vcplusplus14-Jul-04 4:22
vcplusplus14-Jul-04 4:22 
GeneralRe: CFileDialog - customize Pin
David Crow14-Jul-04 10:09
David Crow14-Jul-04 10:09 
GeneralMy application causing an assert in viewcore.cpp Pin
Raghunandan S14-Jul-04 3:27
Raghunandan S14-Jul-04 3:27 
GeneralRe: My application causing an assert in viewcore.cpp Pin
David Crow14-Jul-04 10:15
David Crow14-Jul-04 10:15 
GeneralRe: My application causing an assert in viewcore.cpp Pin
Jeffrey Walton14-Jul-04 12:39
Jeffrey Walton14-Jul-04 12:39 
GeneralRe: My application causing an assert in viewcore.cpp Pin
Raghunandan S14-Jul-04 15:33
Raghunandan S14-Jul-04 15:33 
Generalvoice proplem Pin
mvnevis14-Jul-04 3:26
mvnevis14-Jul-04 3:26 
GeneralTo Add Help to an MFC Pin
camcambala14-Jul-04 3:09
camcambala14-Jul-04 3:09 
GeneralRe: To Add Help to an MFC Pin
BlackDice14-Jul-04 8:07
BlackDice14-Jul-04 8:07 

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.