Search results

  1. D

    SQL syntax

    These should help to get you started - http://www.sqlcourse.com/ http://sqlcourse2.com/
  2. D

    Problems with calling a function from a module

    I use the code in this link for my audit trail which records changes in a separate table - http://articles.techrepublic.com.com/5100-10878_11-6166807.html Hopefully this is what you're after...
  3. D

    Export Qry to Excel

    Why not? You are going to have to split it over worksheets anyway, you might as well apply some logic to that split...
  4. D

    Export Qry to Excel

    Could your query not be split into smaller queries?
  5. D

    Problem with Command Button on Click

    I'll have a look when I get home Tonight mate, running 2002 at work
  6. D

    Create text boxes based on user input

    Your solution is correct
  7. D

    Why Oh Why Oh Why?

    Can you upload a copy of your Database so we can have a look
  8. D

    Problem with Command Button on Click

    Upload it to a file hosting site and post the link here. I'll have a look when I get home Tonight as I don't have 2007 at work.
  9. D

    Create text boxes based on user input

    Ok. Having now looked at your Spreadsheet (which is not very good - I don't mean to be harsh) and your Database there is only one thing to suggest, and that is that you read up on normalisation. You say you are aware of the theory of RDBMS, but you are attempting to create a flat file...
  10. D

    Matching title and gender

    Hopefully that won't cause you problems later in design...
  11. D

    Problem with Command Button on Click

    Can you upload your Database, minus any sensitive data. Will be much easier to see whats going wrong.
  12. D

    Create text boxes based on user input

    You really do need to create these fields in the table yourself. Allowing your users to design your table (which is essentially what they will be doing by 'dynamically' adding fields) is a very bad idea, I cannot stress that enough.
  13. D

    Matching title and gender

    I thought you couldn't create any more tables as you had already reached your 5 table limit?
  14. D

    Create text boxes based on user input

    Have you looked at my suggestion?
  15. D

    Macro to export access data to existing excel worksheet

    Way to hijack someone's thread. If you start your own thread people may be more inclined to help, just a suggestion...
  16. D

    Count ticked in check box and displaying in a text box?

    Place this code in the BeforeUpdate event of your CheckBox:- If Me.CheckBox = -1 Then Me.ControlName1.Enabled = True Me.ControlName2.Enabled = True Else Me.ControlName1.Enabled = False Me.ControlName2.Enabled = False End If
  17. D

    AutoExec to open the right form for the user.

    This really does become much simpler for you if you create a table of users with their username and group
  18. D

    Append Query Previous Working Day

    I saw a thread with a workday module on here just a few days ago, try searching the site for it and it should be what you're after
  19. D

    Enable/Disable Button on Null field

    Forgot to add that I changed the query name back to qryInquiryTracking
  20. D

    Enable/Disable Button on Null field

    Worked fine for me too. What did you change Bob? All I did was remove the ' and it was fine. I am assuming the OP added the ' before uploading the Database and wasn't trying to run the code like this?
Back
Top Bottom