InstallShield for VC++ 6.0
--------------------------

* Set company name to BeebEm otherwise uninstall does not work.

* In SetupInstall() take COMPANY_NAME out of svDir.

* Add code to SetupFolders():

  STRING svPath;
  begin
  svPath = TARGETDIR ^ "BeebEm.exe";
  LongPathToQuote ( svPath , TRUE );
  AddFolderIcon ( SHELL_OBJECT_FOLDER , "BeebEm" , svPath , TARGETDIR , "" , 0 , "" , REPLACE );

  svPath = TARGETDIR ^ "README.txt";
  LongPathToQuote ( svPath , TRUE );
  AddFolderIcon ( SHELL_OBJECT_FOLDER , "View README" , svPath , TARGETDIR , "" , 0 , "" , REPLACE );

  nResult = CreateShellObjects( "" );

* In the Resources tab set:

   PRODUCT_VERSION - Vx.y
   TITLE_MAIN - BeebEm Vx.y

* Misc other changes - see Setup.rul

* Use PackageForTheWeb401 to build self-extracting exe (BeebEm.pfw).
