Module INVT.SL

     1//********************************************************************************
     2// Selection List Definition for INVT
     3//
     4// Author                      :
     5// Originally created          : 01/07/99
     6// Last Update                 :
     7//
     8//********************************************************************************
     9
    10Use ALLENTRY
    11Use SELLISTR
    12
    13Open INVT
    14
    15/Invt_sl_image
    16╔═════════════════════════════════════════════════════════════════╗
    17║                         Inventory List                          ║
    18║Item Id    Description                             Price On Hand ║
    19Ã──────────┬───────────────────────────────────┬─────────┬────────Â
    20║__________│___________________________________│______.__│_____.  ║
    21║__________│___________________________________│______.__│_____.  ║
    22║__________│___________________________________│______.__│_____.  ║
    23║__________│___________________________________│______.__│_____.  ║
    24║__________│___________________________________│______.__│_____.  ║
    25║__________│___________________________________│______.__│_____.  ║
    26║__________│___________________________________│______.__│_____.  ║
    27╚══════════¤═══════════════════════════════════¤═════════¤════════╝
    28/*
    29
    30Object Invt_sl is a Selection_list Invt_sl_image ;
    31        popup Main_File INVT by recnum
    32
    33    Set Location to 4 0
    34    Set Auto_Locate_State     to TRUE           // locate automatically
    35    Set Auto_Server_State     to TRUE           // change indexes when switching columns
    36    Set Allow_move_state      to True
    37
    38    // Properties you may need. Uncomment to reverse the default setting(s).
    39
    40    // Set No_relate_State    to TRUE           // Only use if no DATA_SET and no
    41                                                // RELATES are required. Speed issue.
    42    // Set Auto_Server_State  to TRUE           // Latch on to invoking data-set.
    43    // Set Export_Item_State  to TRUE           // If non-related lists.
    44    // Set Export_Column      to ??             // Column to export from, -1=use initial.
    45    // Set Find_search_State  to FALSE          // To get incremental (slow) search.
    46    // Set Load_Buffer_msg    to MSG_??         // Sent to invoking object upon start-up.
    47    // Set Display_Buffer_msg to MSG_??         // Sent to invoking object close.
    48    // Set Radio_State        to TRUE           // These two are good for multi
    49    // Set Select_Mode        to MULTI_SELECT   // select lists.
    50    // Set Initial_Row        to FILL_FROM_TOP  // Row to start in.
    51    // Set Initial_Column      to ??             // Column to start in.
    52
    53    Begin_Row
    54        Entry_Item INVT.ITEM_ID
    55        Entry_Item INVT.DESCRIPTION
    56        Entry_Item INVT.UNIT_PRICE
    57        Entry_Item INVT.ON_HAND
    58    End_Row
    59
    60End_Object // Invt_sl_