home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / INSTALL / USER.AVF < prev    next >
Encoding:
Text File  |  1995-09-28  |  2.2 KB  |  50 lines

  1. /* Copyright (c) Oracle Corporation 1994.  All Rights Reserved */
  2.  
  3. /************************************************************************
  4.   NAME
  5.     user.avf - user-defined .avf script
  6.  
  7.   DESCRIPTION
  8.     This script allows users access to their own customizable .avf script.
  9.  
  10.  
  11.   MODIFIED    MM/DD/YY  Reason
  12.     LMurphy   06/23/95  Modified for use with Windows 95 PO7
  13.     zzerhoun  01/09/95  Added NLS stuff for Book Doc. Products 
  14.     zzerhoun  01/04/95  Added user_release_grp & user_release_ext intialization
  15.     zzerhoun  12/20/94  Modified to set bundle_name & distributed_option
  16.     zzerhoun  12/08/94  Created for Personal Oracle.
  17. **************************************************************************/
  18.  
  19. {
  20.  
  21.   { ui_graphics("%product_home%\usradus.bmp"); } 
  22.   ['default:
  23.     { ui_graphics("%product_home%\advus.bmp"); }
  24.     ['FILE_NOT_FOUND:
  25.       { ui_graphics("%installer_home%\advus.bmp"); }
  26.       [ 'default:continue();]
  27.     ]
  28.   ]
  29.   /* Setup Bundle Variables */
  30.  
  31.   { bundle_name = bundle_name; }
  32.   ['UNBOUND_VARIABLE: 
  33.     {
  34.       P_O7_95 = "Personal Oracle7 for Windows 95";
  35.  
  36.       bundle_name = P_O7_95;
  37.     }
  38.   ]
  39.   installation_complete = nls("installation_complete","Installation Complete.");
  40.  
  41.   user_release_exists_info = instantiate(nls("user_release_exists_info","Please review the %%bundle_name%% Release Notes.  The Release Notes contain information which may be vital in successfully using %%bundle_name%%.  To read the Release Notes, double-click on the Write program icon entitled 'Oracle7 Release Notes' in the 'Oracle' program group."));
  42.   
  43.   user_release_not_exists_info = instantiate(nls("user_release_exists_info","Please review the %%bundle_name%% Release Notes.  The Release Notes contain information which may be vital in successfully using %%bundle_name%%.  To read the Release Notes, double-click on the Write program icon entitled 'Oracle7 Release Notes' in the 'Oracle' program group.%carriage_return%%carriage_return%The Release Notes are copied as a result of installing the Oracle Installer.  Please install the Oracle Installer and then proceed with reviewing the Release Notes."));
  44.   
  45.   execute("%installer_home%\%operating_system%.avf");
  46.  
  47.  
  48.   return(0);
  49. }
  50.