




版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、精心整理倉庫管理系統(tǒng)項(xiàng)目的建立 這是本人利用閑暇之余在VB6.0上制作的一個(gè)簡陋的類庫管系統(tǒng),現(xiàn)圖文結(jié)合的方式一步一步展現(xiàn)制作過程。由于本人是個(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ù)庫的建立VB6.0中可以創(chuàng)建Access數(shù)據(jù)庫。如下建立一個(gè)“用戶表”的數(shù)據(jù)庫,用來存放用戶信息及一些出入庫管理信息。如下圖單擊“外接程序”再單擊“可視化數(shù)據(jù)管理器”出現(xiàn)如圖點(diǎn)擊“文件”“新建”“Microsoft Access”“Version 2.0 MDB”輸入數(shù)據(jù)庫名,“保存”出現(xiàn)如下圖在數(shù)據(jù)窗口中右擊“新建表”,最終如下往數(shù)據(jù)表里添加數(shù)據(jù)在這里就不羅嗦了,請查閱相關(guān)書籍。登錄界面窗口的建立 最終界面如下:1、Adodc1的添加過程為:單擊“工程”“部
3、件”出現(xiàn)下圖所示,選擇“控件”下的“Microsoft ADO Data Control 6.0 (OLEDB)” 單擊“確定”在工具欄中會(huì)出現(xiàn)“”圖標(biāo),單擊它并拖動(dòng)到相應(yīng)位置即可。其它元件不在一一說明。2、 本窗體代碼如下:Private Sub Command1_Click() '“登錄”、“確定”按鈕 If Command1.Caption = "確定" And Command2.Caption = "取消" Then '如果為“確定”則添加新用戶 If Text1.Text = "" Then '提示用
4、戶輸入用戶名 MsgBox "請輸入用戶名!", , "登錄信息提示:" Exit Sub Else ' Dim usename As String '檢測用戶名是否已經(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 "請?jiān)俅屋斎朊艽a!", , "登錄提示信息:" Text3.SetFocus Exit Sub End If If Text2.Text <> Text3.Text Then MsgBox "兩次輸入的密碼不一致,請確認(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) '檢測用戶名是否存在 strSele
8、ct = "select 密碼 from 用戶登錄信息表 where 用戶名 = '" & strSno & "'" Adodc1.CommandType = adCmdText Adodc1.RecordSource = strSelect Adodc1.Refresh MsgBox "用戶名不存在,請重新輸入!", , "登錄提示信息:" Text1.Text = "" Text2.Text = "" Text1.SetFocus Exit
9、 Sub End If Form1.Hide 'Unload Me Form2.Show 'MsgBox "登陸成功!", , "登錄提示信息:" Else MsgBox "密碼不正確,請重新輸入!", , "登錄提示信息:" 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事件代碼,用來 '顯示向左移動(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 = "出庫信息" Dim pm As String Dim n As String pm = InputBox("產(chǎn)品名", "請輸入", 0) n = "select * from 出庫表 where 品名 = '" & pm & "'" Adodc2.CommandType = adCmdText Adodc2.R
15、ecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub CHKXHCHX_Click() Frame2.Caption = "出庫信息" Dim XH As String Dim n As String XH = InputBox("產(chǎn)品型號(hào)", "請輸入", 0) n = "select * from 出庫表 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 = "出庫信息" Dim JSHR As String Dim n As String JSHR = InputBox("經(jīng)手人", "請輸入", 0) n = "select * from 出庫表 where
17、 經(jīng)手人 = '" & JSHR & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub CKSHJ_Click() Frame2.Caption = "出庫信息" Dim CHKRQ As String Dim n As String CHKRQ = InputBox("出庫日期,格式為:月/日/年 如:12/1/2011", &q
18、uot;請輸入", 0) n = "select * from 出庫表 where 出庫日期 = '" & CHKRQ & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub CKZCX_Click() Frame2.Caption = "出庫信息" Dim ZB As String ZB = "select * from
19、出庫表 " Adodc2.CommandType = adCmdText Adodc2.RecordSource = ZB Adodc2.Refresh Call InitGrid1End SubPrivate Sub Command1_Click() If Text1.Text = "" Then '提示用戶輸入用戶名 MsgBox "請輸入用戶名!", , "登錄信息提示:" Exit Sub Else ' Dim usename As String '檢測用戶名是否已經(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 "請?jiān)俅屋斎朊艽a!", , "登錄提示信息:" Text3.SetFo
22、cus Exit Sub End If If Text2.Text <> Text3.Text Then MsgBox "兩次輸入的密碼不一致,請確認(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)品名", "請輸入", 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("歸還人", "請輸入", 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", "請輸入", 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)", "請輸入", 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)品名", "請輸入", 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)", "請輸入", 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("借出人", "請輸入", 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", "請輸入", 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)手人", "請輸入", 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)手人", "請輸入", 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 = "庫存信息" Dim pm As String Dim n As String pm = InputBox("產(chǎn)品名", &qu
39、ot;請輸入", 0) n = "select * from 庫存表 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、入庫信息" Dim JSHR As String Dim n As String JSHR = InputBox("經(jīng)手人", "請輸入", 0) n = "select * from 入庫表 where 經(jīng)手人 = '" & JSHR & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub RKPMCHX_Cli
41、ck() Frame2.Caption = "入庫信息" Dim pm As String Dim n As String pm = InputBox("產(chǎn)品名", "請輸入", 0) If Len(pm) > 0 Then n = "select * from 入庫表 where 品名 = '" & pm & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh
42、End If Call InitGrid1End SubPrivate Sub RKSHJ_Click() Frame2.Caption = "入庫信息" Dim RKRQ As String Dim n As String RKRQ = InputBox("入庫日期,格式為:月/日/年 如:12/1/2011", "請輸入", 0) n = "select * from 入庫表 where 入庫日期 = '" & RKRQ & "'" Adodc2.Comman
43、dType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh Call InitGrid1End SubPrivate Sub RKXHCHX_Click() Frame2.Caption = "入庫信息" Dim XH As String Dim n As String XH = InputBox("產(chǎn)品型號(hào)", "請輸入", 0) If Len(XH) > 0 Then n = "select * from 入庫表 where 型號(hào) = '" &
44、amp; XH & "'" Adodc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh End If Call InitGrid1End SubPrivate Sub RKZCX_Click() Frame2.Caption = "入庫信息" Dim ZB As String ZB = "select * from 入庫表 " 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 = "庫存信息" Dim XH As String Dim n As String XH = InputBox("產(chǎn)品型號(hào)", "請輸入", 0) If Len(XH) > 0 Then 'And Val(XH) <> 0 n = "select * from 庫存表 where 型號(hào) = '" & XH & "'" Ad
48、odc2.CommandType = adCmdText Adodc2.RecordSource = n Adodc2.Refresh End If Call InitGrid0End SubPrivate Sub ZB_Click() Frame2.Caption = "庫存信息" Dim ZB As String 'Dim N As String 'PM = InputBox("產(chǎn)品名", "請輸入", 0) ZB = "select * from 庫存表 " '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 = "成績" '設(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) '檢測用戶名是否存在 strSelect = "s
53、elect 密碼 from 用戶登錄信息表 where 用戶名 = '" & strSno & "'" Adodc1.CommandType = adCmdText Adodc1.RecordSource = strSelect Adodc1.Refresh MsgBox "用戶名不存在,請重新輸入!", , "登錄提示信息:" Text1.Text = "" Text2.Text = "" Text1.SetFocus Exit Sub End If
54、Unload Me Form2.Show 'MsgBox "登陸成功!", , "登錄提示信息:" Else MsgBox "密碼不正確,請重新輸入!", , "登錄提示信息:" 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 "用戶名不正確,請確認(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 "請輸入舊密碼!", , "信息提示!" Text2.SetFocus Exit Sub End If MsgBox "舊密碼不正確,請確認(rèn)!", , "信息提示!" Text2.Text = "" Text2.SetFocus Exit Sub End If If Text3.Text = "" Then MsgBox "請輸入新密碼!", , "信息提示!" Text3.SetFocus Exit Sub End If If Text4.Text = "" Then MsgBox "請?jiān)俅屋斎胄旅艽a!", , "信息提示!" Text4.SetFocus Exit S
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025正規(guī)的公寓式商品房租賃合同樣本
- 皮脂腺異位醫(yī)學(xué)科普
- 生命支持類設(shè)備管理
- 班級布置專項(xiàng)培訓(xùn)方案
- 透析患者水分控制的管理
- 房地產(chǎn)電商營銷模式研究報(bào)告(專業(yè)版)
- 2025年通勤駕駛員安全培訓(xùn)試題
- 第二課時(shí):數(shù)字的變化規(guī)律教學(xué)設(shè)計(jì)
- 認(rèn)識(shí)新質(zhì)生產(chǎn)力
- 物理化學(xué)電子教案-第十一章
- 2025年護(hù)士考試心理健康試題及答案
- 旅游法規(guī)教程試題及答案
- 2025屆天津市十二區(qū)重點(diǎn)學(xué)校高三下學(xué)期畢業(yè)聯(lián)考(一)英語試題(含答案)
- 《陸上風(fēng)電場工程概算定額》NBT 31010-2019
- 生物醫(yī)學(xué)電子學(xué)智慧樹知到期末考試答案章節(jié)答案2024年天津大學(xué)
- 干部人事檔案轉(zhuǎn)遞單表樣
- 關(guān)于中國文化遺產(chǎn)北京故宮的資料
- 2023年版一級建造師-水利工程實(shí)務(wù)電子教材
- 新中考考試平臺(tái)-考生端V2.0使用手冊
- 診所備案申請表格(衛(wèi)健委備案)
- 水上交通事故報(bào)告書(英文)
評論
0/150
提交評論