home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form cfrmShippingAddr
- BackColor = &H00C0C0C0&
- Caption = "Shipping Address"
- ClientHeight = 2025
- ClientLeft = 7575
- ClientTop = 3105
- ClientWidth = 5385
- Height = 2430
- Left = 7515
- LinkTopic = "Form3"
- MDIChild = -1 'True
- ScaleHeight = 2025
- ScaleWidth = 5385
- Top = 2760
- Width = 5505
- Begin SSFrame fra3dShipMethod
- Caption = "Ship Method"
- ForeColor = &H00000000&
- Height = 1815
- Left = 3960
- TabIndex = 11
- Top = 120
- Width = 1335
- Begin SSOption opt3d2ndDay
- Caption = "2nd Day"
- Height = 255
- Left = 120
- TabIndex = 10
- Top = 1440
- Width = 1095
- End
- Begin SSOption opt3dNextDay
- Caption = "Next Day"
- Height = 255
- Left = 120
- TabIndex = 8
- Top = 1080
- Width = 1095
- End
- Begin SSOption opt3dAfternoon
- Caption = "Afternoon"
- Height = 255
- Left = 120
- TabIndex = 7
- Top = 720
- Width = 1095
- End
- Begin SSOption opt3dMorning
- Caption = "Morning"
- Height = 255
- Left = 120
- TabIndex = 6
- Top = 360
- Width = 975
- End
- End
- Begin SSFrame fra3dSendOrderTo
- Caption = "Send Order To:"
- ForeColor = &H00000000&
- Height = 1815
- Left = 120
- TabIndex = 9
- Top = 120
- Width = 3735
- Begin TextBox txtZipCode
- Height = 300
- Left = 2880
- TabIndex = 5
- Top = 1320
- Width = 735
- End
- Begin TextBox txtState
- Height = 300
- Left = 2415
- TabIndex = 4
- Top = 1320
- Width = 495
- End
- Begin TextBox txtCity
- Height = 300
- Left = 960
- TabIndex = 3
- Top = 1320
- Width = 1455
- End
- Begin TextBox txtAddress2
- Height = 300
- Left = 960
- TabIndex = 2
- Top = 1020
- Width = 2655
- End
- Begin TextBox txtAddress1
- Height = 300
- Left = 960
- TabIndex = 1
- Top = 720
- Width = 2655
- End
- Begin TextBox txtName
- Height = 300
- Left = 960
- TabIndex = 0
- Top = 360
- Width = 2655
- End
- Begin Label lblAddress
- BackColor = &H00C0C0C0&
- Caption = "Address:"
- Height = 255
- Left = 120
- TabIndex = 13
- Top = 600
- Width = 855
- End
- Begin Label lblShipTo
- BackColor = &H00C0C0C0&
- Caption = "Ship To"
- Height = 255
- Left = 120
- TabIndex = 12
- Top = 360
- Width = 735
- End
- End
- Sub Form_Load ()
- cfrmShippingAddr.Height = 2430
- cfrmShippingAddr.Width = 5505
- cfrmShippingAddr.Top = cfrmCustService.Height + 700
- cfrmShippingAddr.Left = cfrmCustService.Left + 1050
- mdifrmMain.mnuWindowShippingAddress.Enabled = False
- If cfrmReviewOrders.Enabled Then
- cfrmReviewOrders.cmb3dShipAddr.Enabled = False
- End If
- End Sub
- Sub Form_Unload (Cancel As Integer)
- cfrmReviewOrders.cmb3dShipAddr.Enabled = True
- mdifrmMain.mnuWindowShippingAddress.Enabled = True
- End Sub
-