版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、精心整理倉(cāng)庫(kù)管理系統(tǒng)項(xiàng)目的建立 這是本人利用閑暇之余在VB6.0上制作的一個(gè)簡(jiǎn)陋的類庫(kù)管系統(tǒng),現(xiàn)圖文結(jié)合的方式一步一步展現(xiàn)制作過(guò)程。由于本人是個(gè)初學(xué)者,里面存在很多不足之處望得到高手們的指導(dǎo)。此文可作供初學(xué)者們學(xué)習(xí)交流。作者聯(lián)系方式:E-mail 最終運(yùn)行效果打開軟件出現(xiàn)如下登錄界面輸入系統(tǒng)預(yù)設(shè)用戶名及密碼( 1 1 )單擊“登錄”或單擊“新用戶”添加新用戶進(jìn)入如下主界面:建立工程1、 創(chuàng)建標(biāo)準(zhǔn)EXE2、 按“打開”3、 添加MDI窗體打開4、 編輯菜單在空白處右擊點(diǎn)擊“菜單編輯器”在“標(biāo)題”里輸入“系統(tǒng)”,在“名稱”里輸入“Sys”(注意此處不能為漢字)點(diǎn)擊“下一個(gè)”再點(diǎn)擊“ ”“確定”退到
2、MDI界面點(diǎn)擊“系統(tǒng)”“退出”如下,然后編寫代碼。代碼如下: Private Sub Exit_Click() EndEnd Sub數(shù)據(jù)庫(kù)的建立VB6.0中可以創(chuàng)建Access數(shù)據(jù)庫(kù)。如下建立一個(gè)“用戶表”的數(shù)據(jù)庫(kù),用來(lái)存放用戶信息及一些出入庫(kù)管理信息。如下圖單擊“外接程序”再單擊“可視化數(shù)據(jù)管理器”出現(xiàn)如圖點(diǎn)擊“文件”“新建”“Microsoft Access”“Version 2.0 MDB”輸入數(shù)據(jù)庫(kù)名,“保存”出現(xiàn)如下圖在數(shù)據(jù)窗口中右擊“新建表”,最終如下往數(shù)據(jù)表里添加數(shù)據(jù)在這里就不羅嗦了,請(qǐng)查閱相關(guān)書籍。登錄界面窗口的建立 最終界面如下:1、Adodc1的添加過(guò)程為:?jiǎn)螕簟肮こ獭薄安?/p>
3、件”出現(xiàn)下圖所示,選擇“控件”下的“Microsoft ADO Data Control 6.0 (OLEDB)” 單擊“確定”在工具欄中會(huì)出現(xiàn)“”圖標(biāo),單擊它并拖動(dòng)到相應(yīng)位置即可。其它元件不在一一說(shuō)明。2、 本窗體代碼如下:Private Sub Command1_Click() '“登錄”、“確定”按鈕 If Command1.Caption = "確定" And Command2.Caption = "取消" Then '如果為“確定”則添加新用戶 If Text1.Text = "" Then '提示用
4、戶輸入用戶名 MsgBox "請(qǐng)輸入用戶名!", , "登錄信息提示:" Exit Sub Else ' Dim usename As String '檢測(cè)用戶名是否已經(jīng)存在 Dim strS As String usename = Trim(Text1.Text) strS = "select * from 用戶登錄信息表 where 用戶名='" & usename & "'" Adodc1.CommandType = adCmdText Adodc1.Recor
5、dSource = strS Adodc1.Refresh MsgBox "您輸入的用戶已存在!", , "登錄提示信息:" Text1.Text = "" Text2.Text = "" Text3.Text = "" Text1.SetFocus Exit Sub End If End If If Text2.Text = "" Then '提示用戶密碼不能為空 MsgBox "密碼不能為空!", , "登錄提示信息:" T
6、ext2.SetFocus Exit Sub End If If Text3.Text = "" Then MsgBox "請(qǐng)?jiān)俅屋斎朊艽a!", , "登錄提示信息:" Text3.SetFocus Exit Sub End If If Text2.Text <> Text3.Text Then MsgBox "兩次輸入的密碼不一致,請(qǐng)確認(rèn)!", , "登錄提示信息:" Text2.Text = "" Text3.Text = "" Text2
7、.SetFocus Exit Sub Else MsgBox ("添加新用戶成功,現(xiàn)在您可以登陸系統(tǒng)了!") Label3.Visible = False Text3.Visible = False Command1.Caption = "登錄" Command2.Caption = "退出" End If Else '“登錄”按鈕,用戶登錄 Dim strSno As String Dim strSelect As String strSno = Trim(Text1.Text) '檢測(cè)用戶名是否存在 strSele
8、ct = "select 密碼 from 用戶登錄信息表 where 用戶名 = '" & strSno & "'" Adodc1.CommandType = adCmdText Adodc1.RecordSource = strSelect Adodc1.Refresh MsgBox "用戶名不存在,請(qǐng)重新輸入!", , "登錄提示信息:" Text1.Text = "" Text2.Text = "" Text1.SetFocus Exit
9、 Sub End If Form1.Hide 'Unload Me Form2.Show 'MsgBox "登陸成功!", , "登錄提示信息:" Else MsgBox "密碼不正確,請(qǐng)重新輸入!", , "登錄提示信息:" Text2.Text = "" Text2.SetFocus End If End IfEnd SubPrivate Sub Command2_Click() '“退出”或“取消”按鈕 If Command2.Caption = "取消&
10、quot; Then Label3.Visible = False Text3.Visible = False Command1.Caption = "登錄" Command2.Caption = "退出" Text1.Text = "" Text2.Text = "" Text1.SetFocus Else End 'Unload Me End IfEnd SubPrivate Sub Command3_Click() '“新用戶”按鈕 Label3.Visible = True Text3.Vi
11、sible = True Text1.Text = "" Text2.Text = "" Text3.Text = "" Command1.Caption = "確定" Command2.Caption = "取消" Text1.SetFocusEnd SubPrivate Sub Command3_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) Label6.Visible = TrueEnd S
12、ubPrivate Sub Command3_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single) Label6.Visible = FalseEnd SubPrivate Sub Form_Load() Label3.Visible = False Text3.Visible = FalseEnd SubPrivate Sub Timer1_Timer() '時(shí)間time1控件的time事件代碼,用來(lái) '顯示向左移動(dòng)的歡迎字幕 If Label4.Left + Label4.Width &
13、gt; 0 Then '當(dāng)標(biāo)簽右邊位置大于0時(shí),標(biāo)簽向左移 Label4.Move Label4.Left - 80 Else '否則標(biāo)簽從頭開始 Label4.Left = Form1.ScaleWidth End If If Label5.Left + Label5.Width > 0 Then Label5.Move Label5.Left - 80 Else Label5.Left = Form1.ScaleWidth End IfEnd Sub主界面窗體如下:代碼: Private Sub AddNew_Click() Frame1.Visible = True
14、 Frame2.Visible = FalseEnd SubPrivate Sub CHKPMCHX_Click() Frame2.Caption = "出庫(kù)信息" Dim pm As String Dim n As String pm = InputBox("產(chǎn)品名", "請(qǐng)輸入", 0) n = "select * from 出庫(kù)表 where 品名 = '" & pm & "'" Adodc2.CommandType = adCmdText Adodc2.R
15、ecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub CHKXHCHX_Click() Frame2.Caption = "出庫(kù)信息" Dim XH As String Dim n As String XH = InputBox("產(chǎn)品型號(hào)", "請(qǐng)輸入", 0) n = "select * from 出庫(kù)表 where 型號(hào) = '" & XH & "'" Adodc2.CommandTy
16、pe = adCmdText Adodc2.RecordSource = n Adodc2.RefreshEnd SubPrivate Sub CKCZ_Click() 'Form2.Hide Form6.ShowEnd SubPrivate Sub CKJSHR_Click() Frame2.Caption = "出庫(kù)信息" Dim JSHR As String Dim n As String JSHR = InputBox("經(jīng)手人", "請(qǐng)輸入", 0) n = "select * from 出庫(kù)表 where
17、 經(jīng)手人 = '" & JSHR & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub CKSHJ_Click() Frame2.Caption = "出庫(kù)信息" Dim CHKRQ As String Dim n As String CHKRQ = InputBox("出庫(kù)日期,格式為:月/日/年 如:12/1/2011", &q
18、uot;請(qǐng)輸入", 0) n = "select * from 出庫(kù)表 where 出庫(kù)日期 = '" & CHKRQ & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub CKZCX_Click() Frame2.Caption = "出庫(kù)信息" Dim ZB As String ZB = "select * from
19、出庫(kù)表 " Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB Adodc2.Refresh Call InitGrid1End SubPrivate Sub Command1_Click() If Text1.Text = "" Then '提示用戶輸入用戶名 MsgBox "請(qǐng)輸入用戶名!", , "登錄信息提示:" Exit Sub Else ' Dim usename As String '檢測(cè)用戶名是否已經(jīng)存在 Dim strS A
20、s String usename = Trim(Text1.Text) strS = "select * from 用戶登錄信息表 where 用戶名='" & usename & "'" Adodc1.CommandType = adCmdText Adodc1.RecordSource = strS Adodc1.Refresh MsgBox "您輸入的用戶已存在!", , "登錄提示信息:" Text1.Text = "" Text2.Text = &quo
21、t;" Text3.Text = "" Text1.SetFocus Exit Sub End If End If If Text2.Text = "" Then '提示用戶密碼不能為空 MsgBox "密碼不能為空!", , "登錄提示信息:" Text2.SetFocus Exit Sub End If If Text3.Text = "" Then MsgBox "請(qǐng)?jiān)俅屋斎朊艽a!", , "登錄提示信息:" Text3.SetFo
22、cus Exit Sub End If If Text2.Text <> Text3.Text Then MsgBox "兩次輸入的密碼不一致,請(qǐng)確認(rèn)!", , "登錄提示信息:" Text2.Text = "" Text3.Text = "" Text2.SetFocus Exit Sub Elsee Dim X As Integer X = MsgBox("成功添加新用戶,是否要重新登錄!", vbYesNo + vbQuestion + vbDefaultButton1, &q
23、uot;提示信息!") If X = vbYes Then Unload Me Form3.Show End If 'MsgBox ("成功添加新用戶!") 'Label3.Visible = False 'Text3.Visible = False 'Command1.Caption = "登錄" 'Command2.Caption = "退出" End If Frame1.Visible = False Frame2.Visible = True Text1.Text = &quo
24、t;" Text2.Text = "'" Text3.Text = "" 'Form3.ShowEnd SubPrivate Sub Command2_Click() Frame1.Visible = False Frame2.Visible = TrueEnd SubPrivate Sub CXDL_Click() Form3.Show 'Unload MeEnd SubPrivate Sub Exit_Click() End Unload Form1 Unload Form2 Unload Form3 Unload
25、Form4 Unload Form5 Unload Form6 Unload Form7 Unload Form8End SubPrivate Sub Form_Load() Unload Form1 Frame1.Visible = False Call InitGrid0 Me.Height = MDIForm1.Height - 1060 Me.Width = MDIForm1.Width - 560 Me.Top = MDIForm1.Top Me.Left = MDIForm1.LeftEnd SubPrivate Sub GHCZ_Click() 'Form2.Hide F
26、orm8.ShowEnd SubPrivate Sub GHPMCX_Click() Frame2.Caption = "歸還信息" Dim pm As String Dim n As String pm = InputBox("產(chǎn)品名", "請(qǐng)輸入", 0) n = "select * from 歸還表 where 品名 = '" & pm & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n
27、Adodc2.Refresh Call InitGrid2End SubPrivate Sub GHRCX_Click() Frame2.Caption = "歸還信息" Dim JCR As String Dim n As String JCR = InputBox("歸還人", "請(qǐng)輸入", 0) n = "select * from 歸還表 where 歸還人 = '" & JCR & "'" Adodc2.CommandType = adCmdText A
28、dodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub GHSJCX_Click() Frame2.Caption = "歸還信息" Dim JCRQ As String Dim n As String JCRQ = InputBox("歸還日期,格式為:月/日/年 如:12/1/2011", "請(qǐng)輸入", 0) n = "select * from 歸還表 where 歸還日期 = '" & JCRQ &
29、 "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub GHXHCX_Click() Frame2.Caption = "歸還信息" Dim XH As String Dim n As String XH = InputBox("產(chǎn)品型號(hào)", "請(qǐng)輸入", 0) n = "select * from 歸還表 where 型號(hào) = '
30、" & XH & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub GHZCX_Click() Frame2.Caption = "歸還信息" Dim ZB As String ZB = "select * from 歸還表 " Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB
31、Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCCZ_Click() 'Form2.Hide Form7.ShowEnd SubPrivate Sub JCHPMCHX_Click() Frame2.Caption = "借出信息" Dim pm As String Dim n As String pm = InputBox("產(chǎn)品名", "請(qǐng)輸入", 0) n = "select * from 借出表 where 品名 = '" & pm
32、 & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCHXHCHX_Click() Frame2.Caption = "借出信息" Dim XH As String Dim n As String XH = InputBox("產(chǎn)品型號(hào)", "請(qǐng)輸入", 0) n = "select * from 借出表 where 型號(hào)
33、 = '" & XH & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCRCX_Click() Frame2.Caption = "借出信息" Dim JCR As String Dim n As String JCR = InputBox("借出人", "請(qǐng)輸入", 0) n = "selec
34、t * from 借出表 where 借出人 = '" & JCR & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCSHJCX_Click() Frame2.Caption = "借出信息" Dim JCRQ As String Dim n As String JCRQ = InputBox("借出日期,格式為:月/日/年 如:12
35、/1/2011", "請(qǐng)輸入", 0) n = "select * from 借出表 where 借出日期 = '" & JCRQ & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JCZCX_Click() Frame2.Caption = "借出信息" Dim ZB As String ZB = &quo
36、t;select * from 借出表 " Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB Adodc2.Refresh Call InitGrid2End SubPrivate Sub JSHRCHX_Click() Frame2.Caption = "歸還信息" Dim JSHR As String Dim n As String JSHR = InputBox("經(jīng)手人", "請(qǐng)輸入", 0) n = "select * from 歸還表 whe
37、re 經(jīng)手人 = '" & JSHR & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub JSHRCX_Click() Frame2.Caption = "借出信息" Dim JSHR As String Dim n As String JSHR = InputBox("經(jīng)手人", "請(qǐng)輸入", 0) n =
38、"select * from 借出表 where 經(jīng)手人 = '" & JSHR & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid2End SubPrivate Sub PMCX_Click() Frame2.Caption = "庫(kù)存信息" Dim pm As String Dim n As String pm = InputBox("產(chǎn)品名", &qu
39、ot;請(qǐng)輸入", 0) n = "select * from 庫(kù)存表 where 品名 = '" & pm & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid0End SubPrivate Sub RKCZ_Click() 'Form2.Hide Form5.ShowEnd SubPrivate Sub RKJSHR_Click() Frame2.Caption = "
40、入庫(kù)信息" Dim JSHR As String Dim n As String JSHR = InputBox("經(jīng)手人", "請(qǐng)輸入", 0) n = "select * from 入庫(kù)表 where 經(jīng)手人 = '" & JSHR & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub RKPMCHX_Cli
41、ck() Frame2.Caption = "入庫(kù)信息" Dim pm As String Dim n As String pm = InputBox("產(chǎn)品名", "請(qǐng)輸入", 0) If Len(pm) > 0 Then n = "select * from 入庫(kù)表 where 品名 = '" & pm & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh
42、End If Call InitGrid1End SubPrivate Sub RKSHJ_Click() Frame2.Caption = "入庫(kù)信息" Dim RKRQ As String Dim n As String RKRQ = InputBox("入庫(kù)日期,格式為:月/日/年 如:12/1/2011", "請(qǐng)輸入", 0) n = "select * from 入庫(kù)表 where 入庫(kù)日期 = '" & RKRQ & "'" Adodc2.Comman
43、dType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub RKXHCHX_Click() Frame2.Caption = "入庫(kù)信息" Dim XH As String Dim n As String XH = InputBox("產(chǎn)品型號(hào)", "請(qǐng)輸入", 0) If Len(XH) > 0 Then n = "select * from 入庫(kù)表 where 型號(hào) = '" &
44、amp; XH & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh End If Call InitGrid1End SubPrivate Sub RKZCX_Click() Frame2.Caption = "入庫(kù)信息" Dim ZB As String ZB = "select * from 入庫(kù)表 " Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB A
45、dodc2.Refresh Call InitGrid1End SubPrivate Sub Timer1_Timer() If Label4.Left + Label4.Width > 0 Then '當(dāng)標(biāo)簽右邊位置大于0時(shí),標(biāo)簽向左移 Label4.Move Label4.Left - 80 Else '否則標(biāo)簽從頭開始 Label4.Left = Form2.ScaleWidth End If If Label5.Left + Label5.Width > 0 Then Label5.Move Label5.Left - 80 Else Label5.Left
46、 = Form2.ScaleWidth End If If Label6.Left + Label6.Width > 0 Then Label6.Move Label6.Left - 80 Else Label6.Left = Form2.ScaleWidth End If If Label7.Left + Label7.Width > 0 Then Label7.Move Label7.Left - 80 Else Label7.Left = Form2.ScaleWidth End IfEnd SubPrivate Sub XGMM_Click() 'Form2.Hid
47、e Form4.ShowEnd SubPrivate Sub XHCX_Click() Frame2.Caption = "庫(kù)存信息" Dim XH As String Dim n As String XH = InputBox("產(chǎn)品型號(hào)", "請(qǐng)輸入", 0) If Len(XH) > 0 Then 'And Val(XH) <> 0 n = "select * from 庫(kù)存表 where 型號(hào) = '" & XH & "'" Ad
48、odc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh End If Call InitGrid0End SubPrivate Sub ZB_Click() Frame2.Caption = "庫(kù)存信息" Dim ZB As String 'Dim N As String 'PM = InputBox("產(chǎn)品名", "請(qǐng)輸入", 0) ZB = "select * from 庫(kù)存表 " 'where 品名 = &
49、#39;" & PM & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB Adodc2.Refresh Call InitGrid0End SubPrivate Sub InitGrid0() With DataGrid1 .Columns(0).Width = 1600 .Columns(1).Width = 2200 .Columns(2).Width = 2200 .Columns(3).Width = 1000 .Columns(4).Width = 1000
50、.Columns(5).Width = 4000 End WithEnd SubPrivate Sub InitGrid1() With DataGrid1 .Columns(0).Width = 800 .Columns(1).Width = 1600 .Columns(2).Width = 1600 .Columns(3).Width = 800 .Columns(4).Width = 800 .Columns(5).Width = 1000 .Columns(6).Width = 800 .Columns(7).Width = 4000 End WithEnd SubPrivate Su
51、b InitGrid2() With DataGrid1 '.Columns(0).Caption = "學(xué)號(hào)" ' .Columns(1).Caption = "課程名" '.Columns(2).Caption = "學(xué)分" ' .Columns(3).Caption = "成績(jī)" '設(shè)置DtgCond的列寬 .Columns(0).Width = 800 .Columns(1).Width = 1600 .Columns(2).Width = 1600 .Columns
52、(3).Width = 800 .Columns(4).Width = 800 .Columns(5).Width = 800 .Columns(6).Width = 1000 .Columns(7).Width = 800 .Columns(8).Width = 4000 End WithEnd Sub用戶重新登錄界面 代碼: Private Sub Command1_Click() Dim strSno As String Dim strSelect As String strSno = Trim(Text1.Text) '檢測(cè)用戶名是否存在 strSelect = "s
53、elect 密碼 from 用戶登錄信息表 where 用戶名 = '" & strSno & "'" Adodc1.CommandType = adCmdText Adodc1.RecordSource = strSelect Adodc1.Refresh MsgBox "用戶名不存在,請(qǐng)重新輸入!", , "登錄提示信息:" Text1.Text = "" Text2.Text = "" Text1.SetFocus Exit Sub End If
54、Unload Me Form2.Show 'MsgBox "登陸成功!", , "登錄提示信息:" Else MsgBox "密碼不正確,請(qǐng)重新輸入!", , "登錄提示信息:" Text2.Text = "" Text2.SetFocus End IfEnd SubPrivate Sub Command2_Click() Unload Me Form2.ShowEnd Sub修改用戶密碼界面代碼: Private Sub Command1_Click() If Trim(Text1.T
55、ext) <> Form2.TextUserName Then MsgBox "用戶名不正確,請(qǐng)確認(rèn)!", , "信息提示!" Text1.Text = "" Text1.SetFocus Exit Sub Else Dim name As String Dim names As String name = Trim(Text1.Text) names = "select * from 用戶登錄信息表 where 用戶名='" & name & "'"
56、 Adodc1.CommandType = adCmdText Adodc1.RecordSource = names Adodc1.Refresh If Text2.Text = "" Then MsgBox "請(qǐng)輸入舊密碼!", , "信息提示!" Text2.SetFocus Exit Sub End If MsgBox "舊密碼不正確,請(qǐng)確認(rèn)!", , "信息提示!" Text2.Text = "" Text2.SetFocus Exit Sub End If If Text3.Text = "" Then MsgBox "請(qǐng)輸入新密碼!", , "信息提示!" Text3.SetFocus Exit Sub End If If Text4.Text = "" Then MsgBox "請(qǐng)?jiān)俅屋斎胄旅艽a!", , "信息提示!" Text4.SetFocus Exit S
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五版高新技術(shù)企業(yè)研發(fā)項(xiàng)目采購(gòu)合同2篇
- 二零二五年度高校與公益組織合作辦學(xué)合同3篇
- 二零二五版家庭健康養(yǎng)生及食療服務(wù)合同3篇
- 二零二五年度生態(tài)雞養(yǎng)殖基地購(gòu)銷合同標(biāo)準(zhǔn)版3篇
- 二零二五版桉樹生物質(zhì)能源開發(fā)合同2篇
- 二零二五年房地產(chǎn)銷售代理合同中止及終止協(xié)議6篇
- 二零二五版智能倉(cāng)儲(chǔ)貨物承包運(yùn)輸一體化合同3篇
- 二零二五年智能空調(diào)銷售及綠色環(huán)保安裝合同樣本3篇
- 二零二五年度車庫(kù)產(chǎn)權(quán)買賣及物業(yè)服務(wù)合同范本3篇
- 二零二五年文化藝術(shù)品油漆保護(hù)修復(fù)合同3篇
- 春節(jié)文化常識(shí)單選題100道及答案
- 24年追覓在線測(cè)評(píng)28題及答案
- TGDNAS 043-2024 成人靜脈中等長(zhǎng)度導(dǎo)管置管技術(shù)
- 《陸上風(fēng)電場(chǎng)工程概算定額》NBT 31010-2019
- FZ∕T 63006-2019 松緊帶
- 罐區(qū)自動(dòng)化系統(tǒng)總體方案(31頁(yè))ppt課件
- BIQS評(píng)分表模板
- 工程建設(shè)項(xiàng)目?jī)?nèi)外關(guān)系協(xié)調(diào)措施
- 招投標(biāo)法考試試題及答案
- 皮帶輸送機(jī)工程施工電氣安裝措施要點(diǎn)
- 藥房(冰柜)溫濕度表
評(píng)論
0/150
提交評(píng)論