Search results

  1. Alansidman

    Win 7 startup folder

    If you are running office 2010, then this may be what you are looking for: C:\Program Files\Microsoft Office\Office12
  2. Alansidman

    query for records between two dates

    Use the Between function in your criteria for both fields, but put the criteria on two separate lines. In this manner you have created an or criteria. Look at this link for further information on the Between function. http://www.w3schools.com/sql/sql_between.asp
  3. Alansidman

    Remove "-" from a six character field

    try this: Expr1: Left([tany],InStr(1,[tany],"-")-1) & Right([tany],Len([tany])-InStr(1,[tany],"-")) where tany is your field name. Change it to reflect your field name.
  4. Alansidman

    Story

    Mint Julep celebrating
  5. Alansidman

    Access Web Database Resources / How to's

    Access 2010 Programmer's Reference by Teresa Hennig, Rob Cooper, Geoffrey Griffith and Jerry Dennison have a dedicated chapter with step by step instructions for web and sharepoint publishing. This published by Wiley. I found my copy on Amazon...
  6. Alansidman

    Need help linking data between multiple tables/forms

    Look at this for a starter: http://www.datapigtechnologies.com/flashfiles/subforms1.html
  7. Alansidman

    Story

    never took place
  8. Alansidman

    Align Labels

    I can't find an image of the 2013 Ribbon, but if it is similar to 2007 and 2010 then open your form in design view. Highlight the controls you wish to align/space and look on the ribbon on the Arrange tab that has become available and look at the size/space icon. Alan
  9. Alansidman

    Help with Calendar

    I wanted to suggest that you use conditional formatting, but for some reason that I cannot determine when the event controls are highlighted, the conditional formatting is greyed out. However, when the date control on the form is highlighted, conditional formatting is allowed. You might want...
  10. Alansidman

    Align Labels

    Try highlighting the labels and right clicking. You should get an alignment and sizing option.
  11. Alansidman

    Story

    will, but not
  12. Alansidman

    Who does gardening?

    Been gardening for many years. Lots of flowers, vegetables and herbs. Freeze the tomatoes for sauce bases. Dehydrate the herbs and peppers and use in cooking all winter. Mint is important for Derby Day (Kentucky Derby) when Mint Juleps are the drink of the day.
  13. Alansidman

    Deleting Records based on selections from another table

    In the QBE, have you changed your Select Query to a Delete Query? Is that where you are getting the error message?
  14. Alansidman

    Story

    and sexy other
  15. Alansidman

    Rerun Query

    If you build a form that has unbound text boxes that are the criteria for the query, add a command button to run the report based upon the query. When the report is run it will call the query which will use the latest criteria in your form to provide the data to the report.
  16. Alansidman

    Story

    while Shaq explored
  17. Alansidman

    last updated & last viewed

    This should get you started. You will have to modify slightly for last viewed. http://www.datawright.com.au/access_resources/tracking_data_changes_in_access.htm Alan
  18. Alansidman

    Converting an Excel VBA macro into an Access module?

    Cross Posted: http://www.accessforums.net/programming/converting-excel-vba-macro-into-access-module-33299.html Please read this link: http://www.excelguru.ca/content.php?184
  19. Alansidman

    Field Update

    Jennifer; Go to this link and scroll down to the three lessons on Combo boxes. http://www.datapigtechnologies.com/AccessMain.htm Alan
  20. Alansidman

    Expr1 being asked for when query run

    Look at your query in design view. I am guessing that you probably changed something in a table design after the query was built and when you run the query, there are former field names that Access cannot identify and this its way of telling you.
Back
Top Bottom