Search results

  1. M

    command buttons

    I've developed an access database which has been working, except for a bug here and there. Early this morning I removed some old programs from my computer and must of taken something I shouldn't have. Now none of the command buttons will display their caption. When I click on them they still...
  2. M

    Question Missing refernce libraries

    I've recently tried to move an Access 2010 database from one laptop to a newer one(both running Windows 7). On the new labtop I get the message to the effect that there are some missing reference libraries. One is MS Web Components 11.0 and the other isVSFLEX3.OCX. I thought I understood how...
  3. M

    form opens blank

    I have a form based on a single table that opens blank. If I set the data entry property to no, it opens showing all 100 records but I can not make changes. If I set this property to yes then the screen is blank. I think it has to do with filters but I think I've cleared them all. I've search...
  4. M

    query recordset

    I'm new at this but have managed to get a recordset using the following: Private Sub cmdRunM1_Click() On Error GoTo Err_cmdRunM1_Click Dim db As DAO.Database Dim rs As DAO.Recordset Dim qdf As DAO.QueryDef Set db = CurrentDb() Set qdf = db.QueryDefs("Query1") qdf(0) =...
  5. M

    Open a table from within existing table

    Is it possible to have a field in a table that when selected opens a different table? Might I be able to hyperlink to a table from within an existing table? I'm want a table to list the names of all the lookup tables in my database then by simply clicking on the designated field the named...
  6. M

    run query

    I have populated an append query and now need to run it without opening it. Then I want the data deleted so it can be run again with a different set of numbers. How to do this with vba code? thanks
  7. M

    Matrix input form

    I have two access 2010 tables; one with a list of employees, the other a list of training topics. I've related the two through a junction table whose primary key is a composite key from each of the two tables. My goal is to quickly assign individual employees to training topics. Not all...
  8. M

    Hello from Wyoming

    Hello to all. I'm new to this forum but not all that new to databases. But it has been some time since I did much programming so am very rusty. It has been frustrating trying to discover how to do something I know can be done, just don't know the correct way to say things. Hopefully someone...
Back
Top Bottom