Search results

  1. S

    Move items from Listbox to other listbox

    Hello everybody, Hopefully somebody can help me on this one. I searched the whole internet and access forums, but I didn't find the exact solution for my problem. I've got a table with students, a table attendance, where I now only save the students who are absent, but I would like to save...
  2. S

    Use NON selected items in Multiple Select Listbox

    Hello, Does anybody know if there's a way to use the NOT selected items in a multiple select listbox? The selected items are put into a txtbox (A) but I want the unselected items to be put in txtbox (B). Is that possible? The multiple select listbox is updated by an cbobox. Thanks allready...
  3. S

    Too complex or incorrectly typed

    Hello, when I use the following query I get an error: This expression is typed incorrectly, or it's too complex to be evaluated. What am I doing wrong? SELECT tblCursist.Naam, tblAbsentie.Datum, tblAbsentie.Lesuur, tblAbsentie.AantalLesuren, tblAbsentie.Deelkwalificatie, tblAbsentie.Docent...
  4. S

    Select Between (Date) AND In txtBox

    Hello, I'm trying to make a report query work but with no succes so far. Can anyone please help me? I've got a multiselect listbox and a txtbox (txtCursisten) where the results from the multiselect listbox appear. I want to get the results out of a table (tblAbsentie) where I can set a start...
  5. S

    Add new record with txtboxes and cboBox

    Hello, this might be easy but I just don't know how to do it. I have 1 combobox and several txtboxes and I want the data from these into a new record by pressing a button. For example: Combobox: Name1 txtBox1: Adress txtbox2: City Button: get data from fields and put in table. table...
  6. S

    Select all Listbox AND Update listbox

    Select all in Listbox AND Update textbox Hello, I've got this multiple select listbox which writes data into a textbox: Private Sub List2_AfterUpdate() Dim Cursisten As String Dim ctl As Control Dim Itm As Variant Set ctl = Me.List2 For Each Itm In ctl.ItemsSelected If...
  7. S

    Combobox updating SubForm

    Hello guru's, I've searched the complete forum for the answer but I just can't find it. I've got a main form with 2 comboboxes on it. The first one filters the second one. What I need now is the 2nd combobox to filter the SubForm. I've tried to add a subform with the wizard but then it shows the...
Back
Top Bottom