I need help...
How do I get the following code to let me put my own title and use a list box rather than type in an entry. Please Help. I will do my best to explain better if need be
Private Sub Command130_Click()
Dim LinkFilter As String
Dim FormName As String
LinkFilter = ""
If Not (IsNull(Me!Branch)) Then
LinkFilter = "[Branch] = " & Me!Branch
End If
FormName = "Vendor Billing Entry Form"
DoCmd.OpenForm FormName, acNormal, , LinkFilter
End Sub
How do I get the following code to let me put my own title and use a list box rather than type in an entry. Please Help. I will do my best to explain better if need be
Private Sub Command130_Click()
Dim LinkFilter As String
Dim FormName As String
LinkFilter = ""
If Not (IsNull(Me!Branch)) Then
LinkFilter = "[Branch] = " & Me!Branch
End If
FormName = "Vendor Billing Entry Form"
DoCmd.OpenForm FormName, acNormal, , LinkFilter
End Sub