Module Vendor.vw

     1Use dfClient.pkg
     2Use DataDict.pkg
     3Use dfEntry.pkg
     4Use dfCEntry.pkg
     5Use Vendor.DD
     6
     7DEFERRED_VIEW Activate_oVendorView FOR ;
     8;
     9Object oVendorView is a dbView
    10    Set Border_Style to Border_Thick
    11    Set Label to "Vendor Entry View"
    12    Set Location to 6 6
    13    Set Size to 137 281
    14    Set piMaxSize to 137 350
    15    Set piMinSize to 137 215
    16
    17    Object Vendor_DD is a Vendor_DataDictionary
    18    End_Object    // Vendor_DD
    19
    20    Set Main_DD to Vendor_DD
    21    Set Server to Vendor_DD
    22
    23    Object oContainer1 is a dbContainer3d
    24        Set Size to 129 273
    25        Set Location to 4 4
    26        Set peAnchors to anAll
    27        Object oVendor_Id is a dbForm
    28            Entry_Item Vendor.ID
    29            Set Label to "Vendor ID:"
    30            Set Size to 13 42
    31            Set Location to 4 67
    32            Set peAnchors to anTopLeft
    33            Set Label_Col_Offset to 2
    34            Set Label_Justification_Mode to jMode_Right
    35        End_Object    // oVendor_ID
    36
    37        Object oVendor_Name is a dbForm
    38            Entry_Item Vendor.Name
    39            Set Label to "Vendor Name:"
    40            Set Size to 13 186
    41            Set Location to 18 67
    42            Set peAnchors to anTopLeftRight
    43            Set Label_Col_Offset to 2
    44            Set Label_Justification_Mode to jMode_Right
    45        End_Object    // oVendor_Name
    46
    47        Object oVendor_Address is a dbForm
    48            Entry_Item Vendor.Address
    49            Set Label to "Street Address:"
    50            Set Size to 13 186
    51            Set Location to 34 67
    52            Set peAnchors to anTopLeftRight
    53            Set Label_Col_Offset to 2
    54            Set Label_Justification_Mode to jMode_Right
    55        End_Object    // oVendor_Address
    56
    57        Object oVendor_City is a dbForm
    58            Entry_Item Vendor.City
    59            Set Label to "City:"
    60            Set Size to 13 90
    61            Set Location to 49 67
    62            Set peAnchors to anTopLeft
    63            Set Label_Col_Offset to 2
    64            Set Label_Justification_Mode to jMode_Right
    65        End_Object    // oVendor_City
    66
    67        Object oVendor_State is a dbComboForm
    68            Entry_Item Vendor.State
    69            Set Label to "State:"
    70            Set Size to 13 32
    71            Set Location to 64 67
    72            Set peAnchors to anTopLeft
    73            Set Form_Border to 0
    74            Set Label_Col_Offset to 2
    75            Set Label_Justification_Mode to jMode_Right
    76            Set Entry_State to False
    77            Set Code_Display_Mode to cb_code_display_code
    78        End_Object    // oVendor_State
    79
    80        Object oVendor_Zip is a dbForm
    81            Entry_Item Vendor.Zip
    82            Set Label to "Zip/Postal Code:"
    83            Set Size to 13 66
    84            Set Location to 79 67
    85            Set peAnchors to anTopLeft
    86            Set Label_Col_Offset to 2
    87            Set Label_Justification_Mode to jMode_Right
    88        End_Object    // oVendor_Zip
    89
    90        Object oVendor_Phone_Number is a dbForm
    91            Entry_Item Vendor.Phone_Number
    92            Set Label to "Phone Number:"
    93            Set Size to 13 126
    94            Set Location to 94 67
    95            Set peAnchors to anTopLeftRight
    96            Set Label_Col_Offset to 2
    97            Set Label_Justification_Mode to jMode_Right
    98        End_Object    // oVendor_Phone_Number
    99
   100        Object oVendor_Fax_Number is a dbForm
   101            Entry_Item Vendor.Fax_Number
   102            Set Label to "Fax Number:"
   103            Set Size to 13 126
   104            Set Location to 108 67
   105            Set peAnchors to anTopLeftRight
   106            Set Label_Col_Offset to 2
   107            Set Label_Justification_Mode to jMode_Right
   108        End_Object    // oVendor_Fax_Number
   109
   110    End_Object    // oContainer1
   111
   112CD_End_Object    // oVendorView
   113