Skip to main content

Posts

Showing posts with the label vba if

Access 2013 VBA How to write your first Hello World program using DLookup function

Microsoft Access 2013 VBA Programming - How to write your first Hello World program using DLookup function. 👨‍💻 Here is my online course: Visual Basic .NET (VB.NET), Access Database and Crystal Reports Course. 🎯 Enroll now (Full lifetime access): http://bit.ly/2YRy99d 📌 Related Videos (YouTube Playlist): Microsoft Access VBA Programming (Visual Basic for Applications). 📺  http://bit.ly/3cOWJ1g ▶️ Subscribe and hit the bell to see new videos: http://bit.ly/2zAg8Ag YouTube:  https://youtu.be/UJioFrnmjRY #BEGIN '- Form 1 Option Compare Database Private Sub VBA_Button_Click()      MsgBox "Hello World!", vbInformation, "This is my first VBA - Hello World!" End Sub '- Form 2 Option Compare Database Private Sub btnHello_Click() On Error GoTo Hello_Err If IsNull(cboGreetings) Then     Exit Sub Else     If IsNull(txtPassword) Or (txtPassword.Value = "") Then         Me.txtPassword.Val...