EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่างเพิ่มเติม)Code: Select all
Private Sub bt_login_Click()
Dim UserLevel As String
Dim Fname As String
If IsNull(Me.txtuser) Then
MsgBox "Plaease enter User Name", vbInformation, "Login ID Required"
Me.txtuser.SetFocus
ElseIf IsNull(Me.txtpass) Then
MsgBox "Plaease enter Password", vbInformation, "Password Required"
Me.txtpass.SetFocus
Else
If (IsNull(DLookup("Em_User", "Employee", "Em_User = '" & Me.txtuser.Value & "' And Em_pass = '" & Me.txtpass.Value & "'"))) Then
MsgBox "UserName & Password Incurect"
Else
UserLevel = DLookup("Em_level", "Employee", "Em_User = '" & Me.txtuser.Value & "'")
Fname = DLookup("Em_Fname", "Employee", "Em_User = '" & Me.txtuser.Value & "'")
DoCmd.Close
If UserLevel = "admin" Then
DoCmd.OpenForm "Home"
Forms![Home]![showuser] = Fname
Forms![Home]![showlv] = UserLevel
Forms!Home.AllowDeletions = False
Forms!Home.AllowEdits = False
Else
DoCmd.OpenForm "Home"
DoCmd.OpenForm "Home"
If UserLevel = "User" Then
DoCmd.OpenForm "Home"
Forms![Home]![showuser] = Fname
Forms![Home]![showlv] = UserLevel
End If
End If
End If
End If