|
Adding, Deleting, and Replacing Resources
Applications must frequently add, delete, or replace resources in executable
files. Two methods can be used to accomplish these tasks. The first is to edit
the resource-definition file, recompile the resources, and add the recompiled
resources to the application's executable file. The second method is to copy the
resource data directly into the application's executable file.
For example, to localize an English-language application for use in Norway, it
may be necessary to replace the English dialog box with one using Norwegian. A
developer creates an appropriate dialog box by using a dialog box editor or by
writing a template in the resource-definition file. The developer then
recompiles the resources and adds the new resources to the application's executable
file.
If an appropriate dialog box exists in binary form, however, the developer can
copy the data directly to the executable file being localized by using three
Windows functions. The BeginUpdateResource function creates an update handle for the executable file whose resources are
to be changed. The UpdateResource function uses this handle to add, delete, or replace a resource in the
executable file. The EndUpdateResource function closes the handle.
After an update handle to an executable file is created by BeginUpdateResource, an application can use UpdateResource repeatedly to make changes to the resource data. Each call to UpdateResource contributes to an internal list of additions, deletions, and replacements but
does not actually write the data to the executable file. Immediately before
closing the update handle, EndUpdateResource writes the accumulated changes to the executable file.
Sometimes, an application must copy resources or find resource sizes. The LoadLibrary function provides a module handle to an executable file whose resources are
to be copied, and the LockResource function provides a pointer to the resource data in the specified module. The SizeofResource function returns the size, in bytes, of a specified resource.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|