Search results

  1. S

    Hi, I looked at your project history and felt that this is something I would like to support. So...

    Hi, I looked at your project history and felt that this is something I would like to support. So I would like to help you get started with your database!~)
  2. S

    Conversion Access 2003 to 2007

    Do you have the mda file and/or do you know what functionality it holds? You probably have to remove the reference in vba and build the function yourself. You can try and upload the database here if it's less than 2mb otherwise you could upload it somewhere else and "write" the link here (you...
  3. S

    Database Error "OLEUnbound312"

    ...or get somebody to remote to your pc... How big is the db can't you upload and share it on a drive in the cloud somewhere?
  4. S

    look up help

    This should be right: SELECT [Food Fact Sheets].[Title] & " " & [Food Fact Sheets].[Next review due] as NewColumn, [Food Fact Sheets].[Title], [Food Fact Sheets].[Next review due] FROM [Food Fact Sheets];
  5. S

    look up help

    SELECT [Food Fact Sheets].[Title] & " " & [Food Fact Sheets].[Next review due] as NewColumn, [Food Fact Sheets].[Title], [Food Fact Sheets].[Next review due] FROM [Food Fact Sheets]; Bound Column 3 column count 3 and column widths: 0.01;2;2
  6. S

    look up help

    When you click on the combobox in question all relevant code is showed in the box on the right!~) The trick to that specific combo is to have a field in your query that combines the 2 columns. Then you set the column width to a very small number. Access doesn't show columns in the dropdown if...
  7. S

    Access 2010 ACCDE command button not work

    Is it possible for you to upload the accdb file?~)
  8. S

    ConcatRelated Issue

    When you use the concatenate module you need to add all the levels to the where clause in the call!~) I believe in this instance you only got job number, you need to add seq.
  9. S

    New Member

    If you upload an example spreadsheet I will have a look and try and give you some recommendations and maybe even a datastructure!~)
  10. S

    look up help

    It only shows the first column that's not 0 in width. There's different solutions to that. I have made a db with examples of various uses of comboboxes. Check out the download section!~)
  11. S

    New Member

    What functionality do you need?~)
  12. S

    ConcatRelated Issue

    Is it possible for you to upload the db?~)
  13. S

    Question Form not displaying information

    Hi, here's a bit to work on... just to show a quick way of getting up and running. Without any data I can't be sure of your structure or you work flow... If you want to go behind the scenes you need to hold down shift when you open the database.
  14. S

    Access beginner in dire need of rescuing

    Just a comment... This is an excellent opportunity to show the difference between data in Excel and data in Access... This is how you would use the data in Excel: Person Year 1 Year 2 Year 3 Person1 a b c Person2 x y z This is how you would do it...
  15. S

    Need help building a parameter query w/criteria to show specific dates in the future

    Between Date() and Date() + [Enter days:] You have to use Date() and not Now(). From now is 02/12/2012 21:28:00 (where I am!~) but the date is actually 02/12/2012 00:00:00 so you would miss today in the result!~)
  16. S

    Need To maintain database

    Here's an example that's very simple an keeps all the data in a de-normalized form which I think is the best for this little project!~) ..if you want to do any changes then remember to hold down shift when you open the database.
  17. S

    Navigation forms

    If you have left the standard naming of the navigation control subforms then: Forms!frmNavigationLeft!NavigationSubform!NavigationSubform!Cnam
  18. S

    Need To maintain database

    You say you have to maintain Milk collection database... does this mean you have a database you could upload? I have developed a lot for the dairy industry, so I would like to see if I can help!~)
  19. S

    Real Estate Management Database

    Hi, It's hard to know where to start because there's a lot of issues that needs to be sorted for the database to function. You have done lots of work on your db, so for people to help maybe you should present a problem at a time. When one is solved you can go on to the next.
  20. S

    Sync Combo Boxes repeating through every record

    ...sorry you need this one: Private Sub Form_Current() Me.cboProducts.Requery End Sub
Top Bottom