Reputation: 4297
I have an old app (Delphi 5) which I want to give it some changes via Res Editor !
I want to set a background image for a Form via RCData in Res Editor, How can I do that?
Any help is really appreciated. Thanks :)
Upvotes: 3
Views: 4542
Reputation: 1938
Majid Pasha, procedure is really simple and straight-forward:
convert
utility (shipped with delphi)convert
back to binary formatNote: depending on tools uses, there might be some shortcuts to bypass conversions and extraction, eg: XN Resource Editor is able to edit Text DFM directly.
Upvotes: 0
Reputation: 34899
Angus Johnson has written a utility called ResHacker. Use it to directly edit the form properties in the exe file. This is the link to his site
Upvotes: 1
Reputation: 163287
Delphi forms don't have a simple background-image property.
You could edit the DFM resource for the form to insert a TImage control. Extract the DFM resource, open it in Delphi, add the control you want, save it, and then replace the original resource with your new version.
See also:
Upvotes: 2