Click here to Skip to main content
15,891,136 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: A Simple Notepad Application Pin
Selvam R1-Feb-04 23:27
professionalSelvam R1-Feb-04 23:27 
GeneralRe: A Simple Notepad Application Pin
Anonymous1-Feb-04 23:49
Anonymous1-Feb-04 23:49 
GeneralRe: A Simple Notepad Application Pin
Selvam R2-Feb-04 6:21
professionalSelvam R2-Feb-04 6:21 
QuestionHow to create new folder after spacify it's name and path Pin
rasha20031-Feb-04 22:58
rasha20031-Feb-04 22:58 
AnswerRe: How to create new folder after spacify it's name and path Pin
фил1-Feb-04 23:14
фил1-Feb-04 23:14 
GeneralRe: How to create new folder after spacify it's name and path Pin
rasha20031-Feb-04 23:35
rasha20031-Feb-04 23:35 
GeneralRe: How to create new folder after spacify it's name and path Pin
Selvam R2-Feb-04 0:18
professionalSelvam R2-Feb-04 0:18 
GeneralRe: How to create new folder after spacify it's name and path Pin
rasha20032-Feb-04 1:32
rasha20032-Feb-04 1:32 
this is the code i use
=======================
CString str=m_ENEWFPATH+m_ENEWFNAME;

SECURITY_ATTRIBUTES z;
z.bInheritHandle=false;
z.lpSecurityDescriptor=NULL;
z.nLength=1000;

//VERIFY(CreateDirectory(str,NULL));

BOOL X=CreateDirectory(str,&z);

if (X)

MessageBox("Folder is Created");
else
MessageBox("Folder does not created");
GeneralRe: How to create new folder after spacify it's name and path Pin
Steve S2-Feb-04 2:36
Steve S2-Feb-04 2:36 
GeneralRe: How to create new folder after spacify it's name and path Pin
Anonymous2-Feb-04 2:56
Anonymous2-Feb-04 2:56 
Generalpcap_dump() problem Pin
styve1-Feb-04 22:34
styve1-Feb-04 22:34 
GeneralRe: pcap_dump() problem Pin
Garth J Lancaster1-Feb-04 23:42
professionalGarth J Lancaster1-Feb-04 23:42 
Generali solve it Pin
styve1-Feb-04 23:48
styve1-Feb-04 23:48 
GeneralAn icon in taskbar Pin
Filomela1-Feb-04 20:35
Filomela1-Feb-04 20:35 
GeneralRe: An icon in taskbar Pin
Diddy1-Feb-04 22:16
Diddy1-Feb-04 22:16 
GeneralRe: An icon in taskbar Pin
Filomela2-Feb-04 20:44
Filomela2-Feb-04 20:44 
GeneralRe: An icon in taskbar Pin
Diddy2-Feb-04 22:32
Diddy2-Feb-04 22:32 
GeneralRe: An icon in taskbar Pin
Filomela4-Feb-04 20:21
Filomela4-Feb-04 20:21 
GeneralRe: An icon in taskbar Pin
Diddy4-Feb-04 23:14
Diddy4-Feb-04 23:14 
GeneralI know absolutely nothing...help, please. Pin
_Sephiroth_1-Feb-04 19:27
_Sephiroth_1-Feb-04 19:27 
GeneralRe: I know absolutely nothing...help, please. Pin
фил1-Feb-04 21:08
фил1-Feb-04 21:08 
GeneralRe: I know absolutely nothing...help, please. Pin
John R. Shaw2-Feb-04 1:03
John R. Shaw2-Feb-04 1:03 
GeneralRe: I know absolutely nothing...help, please. Pin
фил2-Feb-04 1:26
фил2-Feb-04 1:26 
GeneralRe: I know absolutely nothing...help, please. Pin
John R. Shaw2-Feb-04 12:32
John R. Shaw2-Feb-04 12:32 
GeneralRe: I know absolutely nothing...help, please. Pin
Alan Chambers3-Feb-04 7:39
Alan Chambers3-Feb-04 7:39 

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.