?? frmmaii.frm
字號:
Index = 13
Left = 120
TabIndex = 10
Top = 840
Width = 1680
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "ApprovedBy:"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Index = 11
Left = 4440
TabIndex = 9
Top = 795
Width = 1320
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "Invoicemaker:"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Index = 12
Left = 4200
TabIndex = 8
Top = 360
Width = 1560
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "InputDate:"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Index = 0
Left = 600
TabIndex = 7
Top = 360
Width = 1200
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "Warehouse:"
BeginProperty Font
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 600
TabIndex = 6
Top = 1200
Width = 1200
End
End
Begin MSComctlLib.Toolbar Toolbar1
Height = 780
Left = 0
TabIndex = 30
Top = 7680
Width = 5100
_ExtentX = 8996
_ExtentY = 1376
ButtonWidth = 1032
ButtonHeight = 1376
Style = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 5
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "Save"
Key = "Save"
ImageIndex = 1
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "Cancel"
Key = "Cancel"
ImageIndex = 2
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "Quit"
Key = "Quit"
ImageIndex = 3
EndProperty
EndProperty
Begin MSComctlLib.ImageList ImageList1
Left = 4200
Top = 120
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 3
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmmaii.frx":0781
Key = "save"
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmmaii.frx":0A9B
Key = "Cancel"
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frmmaii.frx":0EED
Key = "quit"
EndProperty
EndProperty
End
End
End
Attribute VB_Name = "frmmaii"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Dim db As ADODB.Connection
Set db = New ADODB.Connection
Select Case Button.Key
Case "Save"
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "insert into MIC select * from MICt where InputID=" & _
"'" & Trim(Adodc1.Recordset.Fields(0)) & "'"
db.Close
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "insert into MID select InputID,InputDate,InputType,Warehouse,MaterialID," & _
"MaterialName,ModelNo,Unit,MaxToOnce,Quantity,UnitPrice,Total,Status,Vendor,Buyer,Remarks from MIDt " & _
"where InputID='" & Trim(Adodc1.Recordset.Fields(0)) & "'"
db.Close
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "update MIDt set Isexamed='1' where InputID=" & _
"'" & Trim(Adodc1.Recordset.Fields(0)) & "'"
db.Close
'以下是產品庫存隨之增加
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "update MI set Total = Total+" & Trim(Text1(4).Text) & ",Quantity=Quantity+" & Trim(Text1(8).Text) & "where MaterialID=" & _
"'" & Trim(Adodc1.Recordset.Fields(4)) & "'"
db.Close
Case "Cancel"
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "delete from MIC where InputID='" & Trim(Adodc1.Recordset.Fields(0)) & "'"
db.Close
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "delete from MID where InputID='" & Trim(Adodc1.Recordset.Fields(0)) & "'"
db.Close
Case "Quit"
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "delete from MICt"
db.Close
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "delete from MIDt"
db.Close
frmminput.Adodc_mic.Refresh
frmminput.Adodc_mid.Refresh
Unload Me
End Select
Adodc1.Refresh
End Sub
Private Sub Toolbar2_ButtonClick(ByVal Button As MSComctlLib.Button)
On Error GoTo err
Dim db As ADODB.Connection
Set db = New ADODB.Connection
Dim test As String
Dim id As String
Select Case Button.Key
Case "Input"
test = DTPicker1.Year
If Len(DTPicker1.Month) = 1 Then
test = test & "0" & DTPicker1.Month
Else
test = test & DTPicker1.Month
End If
If Len(DTPicker1.Day) = 1 Then
test = test & "0" & DTPicker1.Day
Else
test = test & DTPicker1.Day
End If
test = test & "01"
With Adodc2
.RecordSource = "select InputID from MIC"
.Refresh
End With
If Adodc2.Recordset.EOF = True Or Adodc2.Recordset.BOF = True Then
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "insert into MICt values('" & Trim(test) & "'," & _
"'" & Trim(DTPicker1.Value) & "','" & Trim(Combo2.Text) & "'," & _
"'" & Trim(Text1(2).Text) & "','" & Trim(Text1(0).Text) & "'," & _
"'" & Trim(Text1(1).Text) & "')"
db.Close
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "insert into MIDt values('" & Trim(test) & "'," & _
"'" & Trim(DTPicker1.Value) & "','" & Trim(Combo1(2).Text) & "'," & _
"'" & Trim(Combo2.Text) & "','" & Trim(Text1(9)) & "'," & _
"'" & Trim(Text1(6).Text) & "','" & Trim(Text3.Text) & "'," & _
"'" & Trim(Text4.Text) & "','" & Trim(Text5.Text) & "'," & _
"'" & Trim(Text1(8).Text) & "','" & Trim(Text1(5).Text) & "'," & _
"'" & Trim(Text1(4).Text) & "','" & Trim(Text1(3).Text) & "'," & _
"'" & Trim(Text6.Text) & "','" & Trim(Text7.Text) & "','0'," & _
"'" & Trim(Text2.Text) & "')"
db.Close
Else
Let id = Adodc2.Recordset.Fields(0)
Do Until Adodc2.Recordset.EOF = True
If id < Adodc2.Recordset.Fields(0) Then
id = Adodc2.Recordset.Fields(0)
End If
Adodc2.Recordset.MoveNext
Loop
If test <= id Then
test = Left(id, 8) & (Right(id, 2) + 1)
If Len(test) = 9 Then
test = Left(test, 8) & "0" & Right(test, 1)
End If
End If
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "insert into MICt values('" & Trim(test) & "'," & _
"'" & Trim(DTPicker1.Value) & "','" & Trim(Combo2.Text) & "'," & _
"'" & Trim(Text1(2).Text) & "','" & Trim(Text1(0).Text) & "'," & _
"'" & Trim(Text1(1).Text) & "')"
db.Close
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "insert into MIDt values('" & Trim(test) & "'," & _
"'" & Trim(DTPicker1.Value) & "','" & Trim(Combo1(2).Text) & "'," & _
"'" & Trim(Combo2.Text) & "','" & Trim(Text1(9)) & "'," & _
"'" & Trim(Text1(6).Text) & "','" & Trim(Text3.Text) & "'," & _
"'" & Trim(Text4.Text) & "','" & Trim(Text5.Text) & "'," & _
"'" & Trim(Text1(8).Text) & "','" & Trim(Text1(5).Text) & "'," & _
"'" & Trim(Text1(4).Text) & "','" & Trim(Text1(3).Text) & "'," & _
"'" & Trim(Text6.Text) & "','" & Trim(Text7.Text) & "','0'," & _
"'" & Trim(Text2.Text) & "')"
db.Close
End If
Case "Cancel"
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "delete from MICt where InputId='" & Trim(Adodc1.Recordset.Fields(0)) & "'"
db.Close
db.Open "Provider=SQLOLEDB.1;Persist Security Info=False;" & _
"User ID=sa;Initial Catalog=InventoryDB;Data Source=(local)"
db.Execute "delete from MIDt where InputId='" & Trim(Adodc1.Recordset.Fields(0)) & "'"
db.Close
End Select
Adodc1.Refresh
err:
Exit Sub
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -