Module SALESP.SL
1//********************************************************************************
2// Selection List Definition for SALESP
3//
4// Author :
5// Originally created : 01/07/99
6// Last Update :
7//
8//********************************************************************************
9
10Use ALLENTRY
11Use SELLISTR
12
13Open SALESP
14
15/SalesP_sl_image
16╔═══════════════════════════════╗
17║ Sales Person Lookup ║
18║Id Name ║
19Ã────┬──────────────────────────Â
20║____│_________________________ ║
21║____│_________________________ ║
22║____│_________________________ ║
23║____│_________________________ ║
24║____│_________________________ ║
25║____│_________________________ ║
26║____│_________________________ ║
27╚════¤══════════════════════════╝
28/*
29
30Object SalesP_sl is a Selection_list SalesP_sl_image ;
31 popup Main_File SALESP by recnum
32
33 Set Location to 6 10
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 SALESP.ID
55 Entry_Item SALESP.NAME
56 End_Row
57
58End_Object // SalesP_sl_SL