Recent content by xp1

  1. X

    Listbox to Text boxes

    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
  2. X

    Listbox to Text boxes

    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.
  3. X

    Listbox to Text boxes

    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...
  4. X

    Combo and Text Box Information

    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...
  5. X

    Paired Listboxes

    Thanks, I will try to do that.
  6. X

    Paired Listboxes

    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...
Back
Top Bottom