1Use dfClient.pkg 2Use DataDict.pkg 3Use dfEntry.pkg 4Use SalesP.DD 5 6DEFERRED_VIEW Activate_oSalesPersonView FOR ; 7; 8Object oSalesPersonView is a dbView 9 Set Border_Style to Border_None 10 Set Label to "Sales Person Entry View" 11 Set Location to 6 6 12 Set Size to 51 245 13 14 Object SalesP_DD is a Salesp_DataDictionary 15 End_Object // Salesp_DD 16 17 Set Main_DD to SalesP_DD 18 Set Server to SalesP_DD 19 20 Object oContainer1 is a dbContainer3d 21 Set Size to 40 233 22 Set Location to 5 6 23 Object oSalesP_ID is a dbForm 24 Entry_Item SalesP.ID 25 Set Label to "Sales Person ID:" 26 Set Size to 13 46 27 Set Location to 4 70 28 Set Label_Col_Offset to 2 29 Set Label_Justification_Mode to jMode_Right 30 End_Object // oSalesP_ID 31 32 Object oSalesP_Name is a dbForm 33 Entry_Item SalesP.Name 34 Set Label to "Sales Person Name:" 35 Set Size to 13 156 36 Set Location to 20 70 37 Set Label_Col_Offset to 2 38 Set Label_Justification_Mode to jMode_Right 39 End_Object // oSalesP_Name 40 41 End_Object // oContainer1 42 43CD_End_Object // oSalesPersonView