Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

LinkFilter

Status
Not open for further replies.

achiola

MIS
Apr 26, 2001
44
US
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top