Search results

  1. F

    Listbox to Listbox PRINT

    Hi all, I have a form with two listboxes side by side and two command buttons in the middle. I need to be able to mulitslect things on both the left and right listboxes, transfer them between using the command buttons in the middle. Then after the user is done putting all the things he/she wants...
  2. F

    Jump to next record.

    I have a main pool of records (about 20,0000). Next to each record is a button that opens up a form. The popup form allows different fields on that record to be edited. I need to be able to have a requery code in the popup form that will requery the main form's records and automatically jump the...
  3. F

    Only Allow 1 Selection

    Hi I have a continuous form that has bound checkboxes next to each record. Right now the code below finds the records that are checked and edits them accordingly. I need to find a way to make only one checkbox be able to be checked at a time. Or have the code below find if 2 or more checkboxes...
  4. F

    Add record to form

    THere are many disposition that can have the effect on the record. So if one employee wants to set disposition a lead and checks it, but another employee at a different computer hits a disposition button to move a different lead, it will change all leads selected. VERY hard to explain.
  5. F

    Add record to form

    How do I set the recordsource of formB to the recordsource of formA. I cant make a main table the recordsource of formB and just filter where dispoitionchk = 1, Because it is a shared database.
  6. F

    Add record to form

    That might be exactly what I am looking for. How do I make the form that pops-up show the records that are checked in the main form.
  7. F

    Add record to form

    I think you might of misunderstood me. I am not looking to add records, i am just looking to have records from one form transfer to another form that pops up. Yes I am referencing an external database because this is a shared database.
  8. F

    Add record to form

    Yes both forms are continuous and have made a checkbox next to each record. Private Sub Command43_Click() Set rs = Me.Recordset Dim user As DAO.Database Set user = DAO.OpenDatabase("c:\a\user.mdb") Set rs3 = user.OpenRecordset("currentuser", dbOpenDynaset) rs.MoveFirst Do While Not rs.EOF...
  9. F

    Add record to form

    yes, but the only records that are in formb are the ones that are selected.
  10. F

    Add record to form

    Hi, I have a form with records. I need to be able to have a command button that opens a form and adds the record where the command button was clicked (continuous form) to that form. Picture having a main form then a little popup form that when you click the records in the main form it adds that...
  11. F

    Unbound checkbox to Edit Selected Records

    Hi i have a shared database and have a form with a string of records. Each record has its own unbound checkbox and I want to make it so you can select multiple records, then be able to hit a button on the top of the form to edit certain fields of the records selected. Please keep in mind that...
  12. F

    Web Browser Auto Login

    Works Great, i just need to click the login button now, how is that done?
  13. F

    Web Browser Auto Login

    Hi Access World Community, Im fairly new to vba and was wondering how I can refer to a username field and login field on a website that is within my Microsoft Web browser control. I have some code below but it is giving me error91 Object vairable or With Block variable not set. Private Sub...
Back
Top Bottom