Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

oracle form 6 installed in win7 64bit

JellyMay 8 2016 — edited May 10 2016

Install Error  :d2kqt60.ins(59): 'Statement' expected when ';' found

///////////////////:d2kqt60.ins//////////////////////////

/* Copyright (c) Oracle Corporation 1994.  All Rights Reserved */

/*****************************************************************************

  NAME

    d2kqt60.ins - V3 installation script for Windows Documentation Quick Tour

  DESCRIPTION

    This script installs Windows Documentation Quick Tour.

  OWNER

   PGUPTA    11/12/97   Created

******************************************************************************/

{

    if (doit)

    {

        /*****************************

        Set the VRF-INS script ratchet

        ******************************/

        ins_ratchet = "1.0.0.9.0";

        execute("%installer_home%%dir_separator%%operating_system%.ins");

        permit_retry_operations  = TRUE;

        permit_ignore_operations = TRUE;

        permit_process_operations= TRUE;

        /************************************************************

        Display the "OPEN SOLUTION" billboard

        if not already displayed, and if Developer 2000 release

        *************************************************************/

        if(exists("%installer_home%%dir_separator%d2bb_06.bmp"))

        {

            if(not(DEV2K_BB06))

            {

                DEV2K_BB07 = TRUE;

                ui_graphics("%installer_home%%dir_separator%d2bb_06.bmp");

            }

        }

        /************************************************************/

        win32_register_OCSM_product();

        /******************

        Install the product

        *******************/

        ui_product(instantiate(display_product_label));

        ui_action(instantiate(install_files));

        copy(deinst);

        copy(qtour);

        /*********************************

        Install d2dh  Language Supplement

        **********************************/

        if(child_in_control)

        {

            install_qtour = TRUE;

            install(w32d2dhl60);

        }

{win32_asynchronous_spawn("%doc60%%dir_separator%\us\d2q60.exe -o -d %doc60%\us");}   <<-----59 line

        ['NO_RESPONSE, 'FILE_NOT_FOUND, 'MEMORY_ERROR: continue();]

        /******************/

        permit_retry_operations = FALSE;

        /**************/

        if(install_parent)                                                  /* Install parent first, if necessary */

            install(product_parent(current_product));

        /*************/

        permit_retry_operations = TRUE;

         if (set_orainfonav_docpath)

         {

                                                                                    /* add orainfonav_docpath in Registry */

                modify("ORAINFONAV_DOCPATH", ORAINFONAV_DOCPATH, ora_config, product_filename(current_product));

                win32_register_key("$ORACLE","","ORAINFONAV_DOCPATH",'REPLICATE);

         }

         /*********************/

        /***************************************************************

         Registering map variables except Installer_home and oracle_home

        ****************************************************************/

         win32_register_map_variable("DOC60");

        /****************************

         Registering map file groups

        *****************************/

        win32_register_OCSM_group(deinst,'MINMODE);

        win32_register_OCSM_group(qtour,'MAXMODE);

        /*************************************************

        **************************************************/

        ui_product(instantiate(display_product_label));

        permit_retry_operations = TRUE;

        /*********************************

        Register and Reference the product

        **********************************/

        EXECUTE_SCRIPT = "REGISTER_REFERENCE_PRODUCT";

        execute("%installer_home%%dir_separator%d2kr2ins.usr");

        /*********************************/

         permit_retry_operations = FALSE;

    }

    [

        'UNREGISTERED_PRODUCT: continue();

        'CANCEL: signal('FAILURE, instantiate(halt_installation));

    ]

}

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 7 2016
Added on May 8 2016
7 comments
1,897 views