📄 main_ksgl_add.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Begin VB.Form Main_Ksgl_Add
BackColor = &H00E3D9E6&
ClientHeight = 4440
ClientLeft = 60
ClientTop = 60
ClientWidth = 6750
ControlBox = 0 'False
ForeColor = &H00C0C0C0&
LinkTopic = "Form1"
ScaleHeight = 4440
ScaleWidth = 6750
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton CmdCancel
Caption = "(&C)取消"
Height = 375
Left = 3390
TabIndex = 9
Top = 3870
Width = 1830
End
Begin VB.CommandButton CmdSave
Caption = "(&S)保存"
Height = 375
Left = 1575
TabIndex = 10
Top = 3870
Width = 1830
End
Begin VB.Frame Frame1
BackColor = &H00FFC0C0&
Caption = "添加科室信息"
BeginProperty Font
Name = "隶书"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C000C0&
Height = 3435
Left = 180
TabIndex = 0
Top = 240
Width = 6390
Begin VB.TextBox Text1
BeginProperty DataFormat
Type = 1
Format = """¥""#,##0.00;(""¥""#,##0.00)"
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 2
EndProperty
Height = 285
Index = 4
Left = 1110
TabIndex = 13
Top = 2190
Width = 5040
End
Begin VB.ComboBox Combo1
Height = 300
Left = 1095
TabIndex = 12
Top = 2580
Width = 5040
End
Begin VB.TextBox Text1
Height = 285
Index = 2
Left = 1110
TabIndex = 4
Top = 1380
Width = 5040
End
Begin VB.TextBox Text1
BeginProperty DataFormat
Type = 1
Format = """¥""#,##0.00;(""¥""#,##0.00)"
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 2
EndProperty
Height = 285
Index = 3
Left = 1110
TabIndex = 3
Top = 1785
Width = 5040
End
Begin VB.TextBox Text1
Height = 285
Index = 1
Left = 1110
TabIndex = 2
Top = 990
Width = 5040
End
Begin VB.TextBox Text1
BackColor = &H00FFFFFF&
Height = 285
Index = 0
Left = 1110
Locked = -1 'True
TabIndex = 1
Top = 615
Width = 2055
End
Begin MSAdodcLib.Adodc Adodc1
Height = 345
Left = -915
Top = 360
Visible = 0 'False
Width = 1200
_ExtentX = 2117
_ExtentY = 609
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 1
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = "Provider=MSDASQL.1;Persist Security Info=False;User ID=sa;Data Source=MZJJSFXT"
OLEDBString = "Provider=MSDASQL.1;Persist Security Info=False;User ID=sa;Data Source=MZJJSFXT"
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "select * from 科室信息表"
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.Label Label6
BackStyle = 0 'Transparent
Caption = "科室电话 基础工资 "
ForeColor = &H00FF0000&
Height = 330
Left = 255
TabIndex = 14
Top = 2235
Width = 765
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "科室类别 基础工资 "
ForeColor = &H00FF0000&
Height = 330
Left = 255
TabIndex = 11
Top = 2655
Width = 765
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "拼音码 基础工资 "
ForeColor = &H00FF0000&
Height = 330
Left = 255
TabIndex = 8
Top = 1830
Width = 765
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "科室简称 基础工资 "
ForeColor = &H00FF0000&
Height = 330
Left = 255
TabIndex = 7
Top = 1440
Width = 765
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "科室编号 "
ForeColor = &H00FF0000&
Height = 330
Left = 255
TabIndex = 6
Top = 675
Width = 870
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "科室名称 基础工资 "
ForeColor = &H00FF0000&
Height = 330
Left = 255
TabIndex = 5
Top = 1050
Width = 765
End
End
End
Attribute VB_Name = "Main_Ksgl_Add"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Activate()
Text1(1).SetFocus
End Sub
Private Sub Form_Load()
Combo1.AddItem ("临床")
Combo1.AddItem ("医技")
Combo1.AddItem ("后勤")
Combo1.AddItem ("行政")
Combo1.AddItem ("其他")
Adodc1.RecordSource = "select * from 科室信息表 order by 科室编号"
Adodc1.Refresh
If Adodc1.Recordset.RecordCount = 0 Then
Text1(0).Text = "01"
Else
Adodc1.Recordset.MoveLast
Text1(0).Text = Format(Adodc1.Recordset.Fields("科室编号") + 1, "00")
End If
End Sub
Private Sub Text1_GotFocus(Index As Integer)
GotFocusBC Text1(Index)
End Sub
Private Sub Text1_LostFocus(Index As Integer)
LostFocusBC Text1(Index)
End Sub
Private Sub Text1_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)
If Index < 4 And KeyCode = vbKeyReturn Then Text1(Index + 1).SetFocus
If Index = 4 And KeyCode = vbKeyReturn Then Combo1.SetFocus
If Index <> 0 And KeyCode = vbKeyUp Then Text1(Index - 1).SetFocus
End Sub
Private Sub Combo1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyReturn Then CmdSave.SetFocus
End Sub
Private Sub CmdSave_Click()
Dim rs As New ADODB.Recordset
rs.Open "select * from 科室信息表", cnn, adOpenKeyset, adLockOptimistic
rs.AddNew
For i = 0 To 4
rs.Fields(i) = Text1(i).Text
Next i
rs.Fields("科室类型") = Combo1.Text
rs.Update
rs.Close
Main_Ksgl.Adodc1.Refresh
EnaT Main_Ksgl
Unload Me
End Sub
Private Sub CmdCancel_Click()
EnaT Main_Ksgl
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -