Hi! I am new to Access and would appreciate some help.
I am develping a browser form which provides the user a view of some data (i.e. surname, firstname, dob) from a database using a query. I am trying to replace the standard system navigation bar with my own buttons which allow the user to click on it and move the record selection to "next" or "previous". I don't know how to attatch an image file to this message which would better explain what I am doing. Eventually I want to allow the user to select a delete button to "deactivate " a record (eg if a customer moves over seas), or type in a surname in a field which dynamically filters the query with the letters entered in the field, and to allow the user to double-click the required record which opens up a new form containing all the other information about the customer. Adding a dynamic search capability is also something I would like to include.
I am only practising with a small test example with the code as follows, simply to get the record selection to move with the click of a button:
I hope this makes some sense to someone and once I have the fully functional browser working I will post it for others to take advantage of.
I am develping a browser form which provides the user a view of some data (i.e. surname, firstname, dob) from a database using a query. I am trying to replace the standard system navigation bar with my own buttons which allow the user to click on it and move the record selection to "next" or "previous". I don't know how to attatch an image file to this message which would better explain what I am doing. Eventually I want to allow the user to select a delete button to "deactivate " a record (eg if a customer moves over seas), or type in a surname in a field which dynamically filters the query with the letters entered in the field, and to allow the user to double-click the required record which opens up a new form containing all the other information about the customer. Adding a dynamic search capability is also something I would like to include.
I am only practising with a small test example with the code as follows, simply to get the record selection to move with the click of a button:
Code:
Option Compare Database Private Sub BtnNextRecord_Click() Dim Browser As Form Dim rstBrowser As DAO.Recordset Set Browser = Me.Contacts_Query_subform.Form rstBrowser = Browser.Recordset rstBrowser.MoveNext End Sub
Comment