Never mind, I got it!
Thanks for your help with the previous code, it is much appreciated :)
Private Sub Form_Current()
Me.txtCount = Me.CurrentRecord & " of " & Me.RecordsetClone.RecordCount
End Sub
Thank you very much, the first option worked for me just fine.
Don't want to bother you too much, my next question would be how do I get the right record count from the list box? When I select a record I would like to have a text box to show me eg. "This is 2 of 10" record.
Thanks.
Hey,
Sorry if this topic was already posted before, I wanted to know how to view/edit records using the text boxes that should be linked to a list box; so when a record is selected in the list box, it would be displayed in the two text boxes. I already have all my buttons working, and list box...
Hello,
I am trying to quickly build a form to do the following, program contains:
Table 1
Table 2
cmbUnit (combo box)
txtPart (part number)
I am getting the unit number from Table 1 as a source, which by the way works with a different form. I will select any unit number, for an example...
Hello,
I need to start on my project which requires a simple form with two list boxes (paired). If anybody can help with the code for the following controls:
Add, Remove, Add All and Remove All.
First listbox will have data loaded from a table with student names; I should be able to add/remove...