Click here to Skip to main content
15,889,909 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHelp needed in Borland C++ Builder Pin
__yash__4-Oct-07 0:24
professional__yash__4-Oct-07 0:24 
AnswerRe: Help needed in Borland C++ Builder Pin
_AnsHUMAN_ 4-Oct-07 0:41
_AnsHUMAN_ 4-Oct-07 0:41 
AnswerRe: Help needed in Borland C++ Builder Pin
James R. Twine4-Oct-07 1:30
James R. Twine4-Oct-07 1:30 
AnswerRe: Help needed in Borland C++ Builder (answer) Pin
Programm3r4-Oct-07 3:57
Programm3r4-Oct-07 3:57 
QuestionNeed Book Pin
Tarek Jabri3-Oct-07 23:31
Tarek Jabri3-Oct-07 23:31 
AnswerRe: Need Book Pin
Programm3r4-Oct-07 2:58
Programm3r4-Oct-07 2:58 
QuestionCheck if exe exist at given location Pin
josip cagalj3-Oct-07 23:30
josip cagalj3-Oct-07 23:30 
AnswerRe: Check if exe exist at given location Pin
Garth J Lancaster3-Oct-07 23:52
professionalGarth J Lancaster3-Oct-07 23:52 
there's a quicker way - something like :-

bool bFExists(LPCTSTR szText) {
struct _stat buf;
return (_stat(szText, &buf) == 0);
}

should be quicker if you dont need to iterate through the files .. you'll need an include for <sys/stat.h>

hth, 'g'
AnswerRe: Check if exe exist at given location Pin
Roger Broomfield4-Oct-07 0:06
Roger Broomfield4-Oct-07 0:06 
AnswerRe: Check if exe exist at given location Pin
Naveen4-Oct-07 0:10
Naveen4-Oct-07 0:10 
AnswerRe: Check if exe exist at given location Pin
Waldermort4-Oct-07 0:11
Waldermort4-Oct-07 0:11 
AnswerTHANKS Pin
josip cagalj4-Oct-07 0:15
josip cagalj4-Oct-07 0:15 
AnswerRe: Check if exe exist at given location Pin
David Crow4-Oct-07 3:27
David Crow4-Oct-07 3:27 
QuestionDebug Assertion Failed - Error message Pin
rajaratk3-Oct-07 23:05
rajaratk3-Oct-07 23:05 
AnswerRe: Debug Assertion Failed - Error message Pin
Hamid_RT3-Oct-07 23:26
Hamid_RT3-Oct-07 23:26 
GeneralRe: Debug Assertion Failed - Error message Pin
rajaratk3-Oct-07 23:31
rajaratk3-Oct-07 23:31 
GeneralRe: Debug Assertion Failed - Error message Pin
James R. Twine4-Oct-07 1:37
James R. Twine4-Oct-07 1:37 
GeneralRe: Debug Assertion Failed - Error message Pin
KarstenK4-Oct-07 2:37
mveKarstenK4-Oct-07 2:37 
QuestionRe: Debug Assertion Failed - Error message Pin
David Crow4-Oct-07 3:29
David Crow4-Oct-07 3:29 
AnswerRe: Debug Assertion Failed - Error message Pin
rajaratk4-Oct-07 20:15
rajaratk4-Oct-07 20:15 
QuestionRe: Debug Assertion Failed - Error message Pin
David Crow5-Oct-07 3:20
David Crow5-Oct-07 3:20 
AnswerRe: Debug Assertion Failed - Error message [modified] Pin
rajaratk7-Oct-07 20:16
rajaratk7-Oct-07 20:16 
QuestionRe: Debug Assertion Failed - Error message Pin
David Crow8-Oct-07 2:47
David Crow8-Oct-07 2:47 
AnswerRe: Debug Assertion Failed - Error message [modified] Pin
rajaratk8-Oct-07 18:41
rajaratk8-Oct-07 18:41 
QuestionRe: Debug Assertion Failed - Error message Pin
David Crow9-Oct-07 2:49
David Crow9-Oct-07 2:49 

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.