A Simple Installer | CodeGuru

A Simple Installer

Environment: VC6 Win9x For an application that consists of more than one file, it is often more convenient to distribute it as a single executable. This article demonstrates how to embed any file as a resource and how to turn that resource back into a file. For each file you want to include, add a […]

Written By
CodeGuru Staff
CodeGuru Staff
Nov 13, 2002
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: VC6 Win9x

For an application that consists of more than one file, it is often more convenient to distribute it as a single executable. This article demonstrates how to embed any file as a resource and how to turn that resource back into a file.

For each file you want to include, add a line to resource.h as follows:

  #define IDR_MYFILE 103

Remember to give each file a unique resource ID.

Close all resource files and open your .rc file as “text.” Add the line

  IDR_MYFILE RCDATA DISCARDABLE "res\\myfile.ext"

A good place to add this line is immediately after the line which defines the IDR_MAINFRAME icon. If you haven’t placed “myfile.ext” in your “res” subdirectory, adjust the path accordingly. Save the .rc file. Close it and open ResourceView. You should see something like this:

There are more convenient ways of inserting a custom data resource, but they either embed the file as raw hex data in the .rc file, inflating it to several times the size of the included file, or neglect to define the resource ID in resource.h so that ResourceView shows the ID in inverted commas.

To turn a resource back into a file, load it into memory using LoadResource(). This returns a BYTE pointer that CFile can use to write that file to disc.

HRSRC hRes = FindResource(NULL, MAKEINTRESOURCE(IDR_MYFILE),
                                                RT_RCDATA);

// Load the resource and save its total size.
DWORD dwSize = SizeofResource(NULL , hRes);
HGLOBAL MemoryHandle = LoadResource(NULL, hRes);
if(MemoryHandle != NULL){

  // LockResource returns a BYTE pointer to the raw data in
  // the resource
  BYTE *MemPtr = (BYTE *)LockResource(MemoryHandle);


  CFile file("C:\_my_path_to_file\myfile.ext", CFile::modeCreate |
                                               CFile::modeWrite);
  file.Write(MemoryHandle,dwSize);

}
FreeResource((HANDLE)hRes);

The demo project writes a .wav file to the Windows directory and changes a Registry key to make this .wav your default e-mail notification sound.

Downloads

Download source InstallDemo.zip – 108Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.