Search results

  1. R

    Returning values into a query or a table

    My suggestion would be to fix the table problem. Dale
  2. R

    table as datasource

    What you ask is possible I think. The problem would be that you can not use the same form unless the field names were the same. If the field names are the same then your tables are NOT normalized. Back up and look at your tables. Dale
  3. R

    Package Solution Wizard and Upgrades

    I found you needed to uninstall the old version first, then delete the FE or the database. The install then works OK. Dale
  4. R

    Problem with data entry

    Your tables look ok, Your relationships on some look backwards. A few examples are; tbl_Location. You can have only one location per user. You can not enter a user without first entering a location. Put the user_ID in the Location table. Same with tbl_Years Of Experience, tbl_Area of Experience...
  5. R

    Command Buttons

    No, I don't think you can. No way for the command button to know what you want to do. Dale
  6. R

    how to maintain historical records

    I solved this by storing the Total sold price. I don't think this is recommended by anyone however, I did not want to write a lot of code. For me it solved several problems of refunds, taxes and future sales. Dale
  7. R

    report query

    Try a Text Rich File. Worked for me. Dale
  8. R

    Cannot Instantiate child recordset

    Dim rstEMails as DAo.Recordset Dim rstFile as DAO.Recordset Dim DBS as DAO.Database Set DBS = currentDB Set rstEmails = DBS.OpenRecordset("Beldenemails") SET rsFile=DBS.OpenRecordset("PutSomeTable/QueryHere") Close rstEmails Close rstFile Close DBS Set rstEmails=Nothing Set rstFile = Nothing...
  9. R

    Access 2010 keep focus in form asap :)

    You don't want the form to lose focus UNTIL the NameOf Order field is typed in. Correct. Then you say the form loses focus AFTER the field is filled in. I am not sure what you want. Dale
  10. R

    3 combo boxes in 3 subforms

    Unbind your combo boxes. 2nd box would be something like , WHERE tblCampList.CampID = The ID of your third form.; If they are linked by ID and NOT name. Dale
  11. R

    Form_Unload vs Form_Close

    FYI. Form Events if you don't have them. http://msdn.microsoft.com/en-us/library/ff835965.aspx I would look into the Undo command. Dale
  12. R

    After Insert

    Sorry to differ with you, however IF a database is properly constructed the users need not know anything about Access but how to enter and retrieve data. Dale
  13. R

    Requery tab subforms from main form

    Try, Me.YourSubName.Requery Dale
  14. R

    Print Preview showing $ although form shows £

    Start by looking for Format$() on the report and in the code. Dale
  15. R

    New tab on the form.

    I would start with a query that filtered the customers with a debt. Bind the DebitForm to this query. Add the new button to open a form the read all records. Docmd.Openform "DebitForm" Dale
  16. R

    3 combo boxes in 3 subforms

    The first combo box is filled with the data to filter the 2nd combo box and the 2nd combo box is the filter for the 3rd combo box using the WHERE clause. To be more specific we would need more information as to what data you are using and exactly what you want to filter. Dale
  17. R

    Update a table using a form

    If your tables are set up properly this should happen automatically. Take a good look at your tables to make sure they are well normalized. Google normalization. Dale
  18. R

    After Insert

    Your table structure sounds like it is way off. Google table normalization. Your student information should only be in one table and related to the tables. Dale
  19. R

    Search query with wildcards

    You can try putting Is Null as an OR in all of the Filtered fields. Forms![frmLBT_db_Tool]!cmbName Then under this (OR) type Is Null. Dale
  20. R

    Use of Count in query

    Try this. SELECT Count([ACD-C-DataSourceExport].Field2) AS MyCount FROM [ACD-C-DataSourceExport] GROUP BY [ACD-C-DataSourceExport].Field2 HAVING ((([ACD-C-DataSourceExport].Field2) Like "2313*")); Dale
Back
Top Bottom