![]() |
Res --> DLL - dcc32 compalieren
Hallo
Wenn man keine Vollversion von Delphi hat. also nur die Starter, kann man ja dcc32 nicht benutzen. Ich müsste aber eine "RES" Ressourcen Datei, automatisch in eine DLL kompilieren. Habe bei den Kollegen von ![]() gefragt wie die das machen, leider ohne Feedback. Wie gesagt ich möchte nur einen DLL Header um die "Res" Datei packen. Also brauche ich keine Libraries Martin Michael |
AW: Res --> DLL - dcc32 compalieren
Du mußt ja nicht unbedingt den Resouce Compiler von Delphi verwenden. :zwinker:
![]() PS: Probier mal Folgendes:
Delphi-Quellcode:
{$RESOURCE Dateiname.res Dateiname.rc}
Oder du schaffst via ![]() |
AW: Res --> DLL - dcc32 compalieren
Danke himitsu
Schaue ich mir an:thumb: |
AW: Res --> DLL - dcc32 compalieren
Oder du nimmst einfach folgende Projektdatei (Text kopieren und als MeineResourcen.dpr abspeichern)
Delphi-Quellcode:
Dann kopierst du deine RES-Dateien mit in das Verzeichnis und kompilierst mit Delphi.
library MeineResourcen;
{$R *.RES} begin end. Du kannst auch RC-Dateien zum Projekt hinzufügen. Diese werden dann RES-Dateien kompiliert (mit BRCC32.exe) und zur Resourcen-DLL dazugelinkt. |
AW: Res --> DLL - dcc32 compalieren
shmia
Zitat:
Das habe ich von C++ umgeschrieben nur dummerweisse stimmt die grösse nicht bei SizeofResource(hExe, hRes)
Delphi-Quellcode:
Wo bin ich mal wieder blind.
var
hResLoad : HGLOBAL; // handle to loaded resource hExe : HMODULE; // handle to existing .EXE file hRes : HRSRC; // handle/ptr. to res. info. in hExe hUpdateRes : THANDLE; // update resource handle lpResLock : pointer; // pointer to resource data result : BOOL; begin // Load the .EXE/.DLL file that contains the ICONs you want to copy. hExe := LoadLibraryEX('D:\Resource\Debug\Win32\testdll.dll' , 0 , LOAD_LIBRARY_AS_DATAFILE); if hEXE = 0 then begin raise Exception.Create('Could not load exe.'); exit; end; // Locate the ICON resource hRes := FindResource(hExe, 'ico1', RT_GROUP_ICON ); if hRes = 0 then begin raise Exception.CreateFmt('Could not locate an ICON - %s' , ['ico0']); exit; end; // Load the ICON into global memory. hResLoad := LoadResource(hExe, hRes); if hResLoad = 0 then begin raise Exception.Create('Could not load Icon.'); exit; end; // Lock the ICON into global memory. lpResLock := LockResource(hResLoad); if lpResLock = nil then begin raise Exception.Create('Could not lock dialog box.'); exit; end; // Open the file to which you want to add the ICON resource. hUpdateRes := BeginUpdateResource('D:\Resource\Debug\Win32\test7.dll' , FALSE); if hUpdateRes = 0 then begin raise Exception.Create('Could not open file for writing.'); exit; end; Button1.Caption := IntToStr(SizeofResource(hExe, hRes)); // Add the ICON resource to the update list. result := UpdateResource(hUpdateRes, // update resource handle RT_GROUP_ICON, // change dialog box resource 'zzy77', //yyz77 //MAKEINTRESOURCE(102), MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), // neutral language lpResLock, // ptr to resource info SizeofResource(hExe, hRes)); // size of resource info if not result then begin raise Exception.Create('Could not add resource.'); exit; end; // Write changes to the dll and then close it. if not EndUpdateResource(hUpdateRes, FALSE) then begin raise Exception.Create('Could not write changes to file.'); exit end; // Clean up. if not FreeLibrary(hExe) then begin raise Exception.Create('Could not free executable.'); exit; end; Habe mir das mit ResEdit angeschaut, die Resource wird erstellt nur leider zu wenig bytes. Stört euch nicht an dialog box das habe ich noch nicht geändert |
AW: Res --> DLL - dcc32 compalieren
![]() Habe da noch was von den C++ Kollegen gefunden, habe wohl ein Problem mit dem header Habe heute keine Lust mehr. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 12:13 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz