hallo,
danke für die zahlreichen antworten,
momentan geht es mir speziell um die dateigröße
meiner
dll's die wie schon gesagt über 400kb groß
werden und nur ein paar seiten code enthalten
von dem packen der
dll's halte ich nicht so viel,
ich möchte lieber den unnötigen kram aus diesen
dateien entfernen
ich hab dazu in einer newsgroup folgendes gefunden:
Zitat:
1) Using TForm to output events
2) Output events to debug output (Delphi's Event Log), it's also features creation of 'Lite size'
DLL
This configurations controlled by conditional define - USE_FORM (Project->Options->Directories/Conditionals).
In second case pay attention on this points:
Even if U not use TForm, the
DLL size is approx. ~350 KB.
When
DLL is build and registerd in
IDE, Delphi 'transparently' recreates
project.PAS
unit.
This
unit contains this USES clause by default:
"uses Windows,
ActiveX, Classes, Graphics, OleCtrls, StdVCL;"
Graphics and OleCtrls units are responsible for blowing
DLL size by
approx. 250 KB, so remove them (actually U can remove all clause, sinse TGUID defined in System.PAS)
and rebuild - U'll get ~87 KB
DLL.
das hab ich auf delphi 7 ausprobiert und hatte damit leider keinen wirklichen erfolg,
vielleicht hab ich auch irgendwo etwas übersehn, aber die dateigröße
hat sich nicht wirklich verändert