Applications made with Borland C++ Builder 6 not working in XPE

T

Tom

I am trying to run a few windows applications made with Borland C++
Builder 6 in XPE and they are terminating with no errorlevel being
returned. Applications made with Microsoft Visual Studio work fine.
Has anyone else seen or heard of this kind of problem with borland and
XPE?

Tom
 
G

Gordon Smith \(eMVP\)

Tom said:
I am trying to run a few windows applications made with Borland C++
Builder 6 in XPE and they are terminating with no errorlevel being
returned. Applications made with Microsoft Visual Studio work fine.
Has anyone else seen or heard of this kind of problem with borland and
XPE?

Tom

The generic answer is: You're missing a dependancy.

I'm not familiar with apps made using Borland (I used MS). What I would do
to trouble shoot this is first run depends.exe against the app to see the
static DLL dependancies. Verify that each of those exist in your OS. Most
likely, that will solve your issue.

If that doesn't work, try other tools (filemon) to see what file it's trying
to open but failing. 99% likely, you're missing a DLL. 90% likely, you'll
find it through depends.exe.

--Gordon Smith (eMVP)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top