Click here to Skip to main content
15,914,109 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Convert VB code to C++ Pin
Cedric Moonen23-Aug-04 23:11
Cedric Moonen23-Aug-04 23:11 
GeneralRe: Convert VB code to C++ Pin
Vivek Jishtu24-Aug-04 0:09
Vivek Jishtu24-Aug-04 0:09 
GeneralRe: Convert VB code to C++ Pin
Cedric Moonen24-Aug-04 1:12
Cedric Moonen24-Aug-04 1:12 
GeneralRe: Convert VB code to C++ Pin
Antony M Kancidrowski24-Aug-04 0:27
Antony M Kancidrowski24-Aug-04 0:27 
GeneralRe: Convert VB code to C++ Pin
Vivek Jishtu24-Aug-04 0:48
Vivek Jishtu24-Aug-04 0:48 
GeneralCreateMsgService fails Pin
kanetheterrible123-Aug-04 22:36
kanetheterrible123-Aug-04 22:36 
GeneralISAPI causes crashing to IIS when connection to SQL Server Pin
raed23-Aug-04 22:17
raed23-Aug-04 22:17 
GeneralRe: ISAPI causes crashing to IIS when connection to SQL Server Pin
Graham Bradshaw23-Aug-04 23:22
Graham Bradshaw23-Aug-04 23:22 
GeneralRe: ISAPI causes crashing to IIS when connection to SQL Server Pin
raed24-Aug-04 0:49
raed24-Aug-04 0:49 
GeneralRe: ISAPI causes crashing to IIS when connection to SQL Server Pin
raed24-Aug-04 1:56
raed24-Aug-04 1:56 
GeneralRe: ISAPI causes crashing to IIS when connection to SQL Server Pin
Graham Bradshaw24-Aug-04 2:56
Graham Bradshaw24-Aug-04 2:56 
GeneralRe: ISAPI causes crashing to IIS when connection to SQL Server Pin
raed24-Aug-04 4:12
raed24-Aug-04 4:12 
GeneralRe: ISAPI causes crashing to IIS when connection to SQL Server Pin
raed24-Aug-04 5:21
raed24-Aug-04 5:21 
QuestionHow to Disable Ctrl Tab in my application Pin
Omar Alvi23-Aug-04 21:50
Omar Alvi23-Aug-04 21:50 
Questionhow to make the background of CListCtrl transparent Pin
boyboy23-Aug-04 21:07
boyboy23-Aug-04 21:07 
AnswerRe: how to make the background of CListCtrl transparent Pin
Antony M Kancidrowski24-Aug-04 0:44
Antony M Kancidrowski24-Aug-04 0:44 
GeneralRe: how to make the background of CListCtrl transparent Pin
Michael Haephrati16-Jan-17 2:58
professionalMichael Haephrati16-Jan-17 2:58 
Generalwindows service Pin
Anonymous23-Aug-04 20:43
Anonymous23-Aug-04 20:43 
GeneralRe: windows service Pin
mahade123-Aug-04 22:18
mahade123-Aug-04 22:18 
GeneralDifference between Static link library and Dynamic link library Pin
zahid_ash23-Aug-04 20:42
zahid_ash23-Aug-04 20:42 
GeneralRe: Difference between Static link library and Dynamic link library Pin
RichardS23-Aug-04 21:39
RichardS23-Aug-04 21:39 
GeneralRe: Difference between Static link library and Dynamic link library Pin
Varnindra22-Mar-10 6:19
Varnindra22-Mar-10 6:19 
GeneralParsing Paths Pin
Monty223-Aug-04 20:11
Monty223-Aug-04 20:11 
GeneralRe: Parsing Paths Pin
Ryan Binns23-Aug-04 21:03
Ryan Binns23-Aug-04 21:03 
GeneralRe: Parsing Paths Pin
Rory Solley23-Aug-04 21:37
Rory Solley23-Aug-04 21:37 
Why not use:

TCHAR szDrive[_MAX_DRIVE];
TCHAR szDir[_MAX_DIR];
TCHAR szFname[_MAX_FNAME];
TCHAR szExt[_MAX_EXT];

::_tsplitpath(csPath, szDrive, szDir, szFname, szExt);

Then, just check to see if you have the filename and extension in szFname and szExt.

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.