📄 frmpoinfo.frm
字号:
VERSION 5.00
Begin VB.Form FrmPOInfo
Caption = "修改PO要求"
ClientHeight = 2805
ClientLeft = 60
ClientTop = 510
ClientWidth = 11880
Icon = "FrmPOInfo.frx":0000
LinkTopic = "Form1"
ScaleHeight = 2805
ScaleWidth = 11880
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox TxtPaymentCondition
Height = 375
Left = 1440
TabIndex = 2
Top = 480
Width = 9735
End
Begin VB.TextBox TxtDeliverDemand
Height = 375
Left = 1440
TabIndex = 1
Top = 960
Width = 9735
End
Begin VB.TextBox TxtOther
Height = 375
Left = 1440
TabIndex = 0
Top = 1440
Width = 9735
End
Begin VB.Image Image4
Height = 300
Left = 6360
Picture = "FrmPOInfo.frx":0CCA
Top = 2160
Width = 300
End
Begin VB.Label LblCancel
BackStyle = 0 'Transparent
Caption = "取 消"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 6960
MouseIcon = "FrmPOInfo.frx":10E6
MousePointer = 99 'Custom
TabIndex = 7
Top = 2160
Width = 855
End
Begin VB.Label LblOK
BackStyle = 0 'Transparent
Caption = "确 定"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 4440
MouseIcon = "FrmPOInfo.frx":13F0
MousePointer = 99 'Custom
TabIndex = 6
Top = 2160
Width = 735
End
Begin VB.Image Image3
Height = 300
Left = 3840
Picture = "FrmPOInfo.frx":16FA
Top = 2160
Width = 300
End
Begin VB.Label Label8
BackStyle = 0 'Transparent
Caption = "其 他:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 240
MouseIcon = "FrmPOInfo.frx":1B16
TabIndex = 5
Top = 1440
Width = 1455
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "送货要求:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 240
MouseIcon = "FrmPOInfo.frx":1E20
TabIndex = 4
Top = 960
Width = 1455
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "付款条件:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 240
MouseIcon = "FrmPOInfo.frx":212A
TabIndex = 3
Top = 480
Width = 1455
End
End
Attribute VB_Name = "FrmPOInfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public OriPOID As String
Private Sub Form_Load()
End Sub
Private Sub LblCancel_Click()
Unload Me
End Sub
Private Sub lblOk_Click()
'添加POInfo信息
MyPO.PaymentCondition = TxtPaymentCondition.Text
MyPO.DeliverDemand = TxtDeliverDemand.Text
MyPO.Other = TxtOther.Text
MyPO.POID = OriPOID
MyPO.UpdatePOInfo (OriPOID)
MsgBox "PO信息修改成功"
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -