Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Applications files for deployment

Status
Not open for further replies.

bobbie100

Programmer
Aug 29, 2003
64
GB
I need to identify the supporting windows files (.dll etc) that are required to deploy the application I am developing. The Delphi help file does not say anything about how to determine what files are needed. The files I am concerned about mainly relate to the Windows API.
I am using Delphi 7 running under Win XP and will be deploying to Win 98/NT/2k/XP platforms.

Can anyone provide advice on how to do this or point me to suitable internet sites that explain it?
 
get dependencywalker from M$ at
Don't worry about Windows DLL's, your app will only run on Windows, and usually the DLL's will(should) be already installed [2thumbsup]

HTH
TonHu
 
I agree with TonHu, unless you wrote some DLL's yourself, everything should be in windows. Thats one of the big advantges of Delphi in most cases you only need to distribute a single executable.

Steve
Two things are infinite
The Universe and Human stupidity: Einstein.
(He wasn't too sure about the Universe)
 
Many thanks for the advice.

I think the only problem is likely to be the installed version of comctl32.dll. I've already modified my use of TImageList components to partially address this issue.

Does anyone have a definitive list of Delphi 7 components/properties to be avoided so that the installed version of comctl32.dll is not a deployment issue.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top