Module ORDERHEA.SL

     1//********************************************************************************
     2// Selection List Definition for ORDERHEA
     3//
     4// Author                      :
     5// Originally created          : 01/07/99
     6// Last Update                 : 01/07/99
     7//
     8//********************************************************************************
     9
    10Use ALLENTRY
    11Use SELLISTR
    12
    13Open ORDERHEA
    14
    15/OrderHea_sl_image
    16╔══════════════════════════════════════════════════════════════════════╗
    17║                             Order Lookup                             ║
    18║Order#  Cust# Customer Name                    Date     Order Total   ║
    19Ã──────┬──────┬──────────────────────────────┬──────────┬──────────────Â
    20║_____.│_____.│______________________________│__/__/____│________.__   ║
    21║_____.│_____.│______________________________│__/__/____│________.__   ║
    22║_____.│_____.│______________________________│__/__/____│________.__   ║
    23║_____.│_____.│______________________________│__/__/____│________.__   ║
    24║_____.│_____.│______________________________│__/__/____│________.__   ║
    25║_____.│_____.│______________________________│__/__/____│________.__   ║
    26║_____.│_____.│______________________________│__/__/____│________.__   ║
    27╚══════¤══════¤══════════════════════════════¤══════════¤══════════════╝
    28/*
    29
    30Object OrderHea_Sl is a Selection_list OrderHea_Sl_image ;
    31        popup Main_File ORDERHEA by recnum
    32
    33    Set Location to 5 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    // Properties you may need. Uncomment to reverse the default setting(s).
    38
    39    // Set No_relate_State    to TRUE           // Only use if no DATA_SET and no
    40                                                // RELATES are required. Speed issue.
    41    // Set Auto_Server_State  to TRUE           // Latch on to invoking data-set.
    42    // Set Export_Item_State  to TRUE           // If non-related lists.
    43    // Set Export_Column      to ??             // Column to export from, -1=use initial.
    44    // Set Find_search_State  to FALSE          // To get incremental (slow) search.
    45    // Set Load_Buffer_msg    to MSG_??         // Sent to invoking object upon start-up.
    46    // Set Display_Buffer_msg to MSG_??         // Sent to invoking object close.
    47    // Set Radio_State        to TRUE           // These two are good for multi
    48    // Set Select_Mode        to MULTI_SELECT   // select lists.
    49    // Set Initial_Row        to FILL_FROM_TOP  // Row to start in.
    50    // Set Initial_Column      to ??             // Column to start in.
    51
    52    Begin_Row
    53        Entry_Item ORDERHEA.ORDER_NUMBER
    54        Entry_Item CUSTOMER.CUSTOMER_NUMBER
    55        Entry_Item CUSTOMER.NAME
    56        Entry_Item ORDERHEA.ORDER_DATE
    57        Entry_Item ORDERHEA.ORDER_TOTAL
    58    End_Row
    59
    60End_Object // OrderHea_