Search results

  1. S

    Link to a file or folder from an Access Form

    There is code in the API section at www.mvps.org/access that will allow you to open the standard Windows file open dialog. You can set the default folder to open based on the client ID.
  2. S

    Relationships

    Hmm, you do seem to have some circular references, but its not clear what's causing them.
  3. S

    No records between dates

    If you are basing a report on a query and the query returns no records, the report won't work. You can use the On No Data Event to produce a message that there are no records or change the Recordsource to a dummy table that returns a blank record.
  4. S

    finding current usergroup

    Using CurrentUser() requires using Access security. I don't particularly like Access security. I find it cumbersome. You can do the same thing using Environ("Username"). This functions returns the network login ID for the PC. You would then go with something like Smart recommended, where you...
  5. S

    Link to a file or folder from an Access Form

    Can you explain more about what you want this link to do?
  6. S

    Relationships

    If you have aliases in the Relations window it probably means circular references. You might want to do a screen shot and attach it.
  7. S

    Split the Database, Should I do it?

    It amazes me too. Generally, I've heard that Access starts to bog down after 20 concurrent users and that's on a split database. I will repeat something I have said before. EVERY database that is either multi-user or supported by someone other than the user NEEDS to be split. This is an...
  8. S

    storing images in databases

    I agree with ssteinke. The method in the indicated in the article he links to is the preferred one. You can use the same method if an unbound image control on forms as well as report. For a Form you use the On Current event to set the imagepath. In your case, since you want to store multiple...
  9. S

    Automatic posting in TextBox/ComboBox in Forms

    glad to assist
  10. S

    Formula in Access

    I apologize. I did misread your note. I thought you were advocating add a field to a table, not a column to a query or a control on a form. Scott<>
  11. S

    Query with multiple fields to filter

    Toni, You are missing the point. This can be done VERY easily if you use a normalized structure. Just follow my suggestions for table structure. If you have been entering data we can help you transfer the data to the correct structure. Once you have this strucutre, you can create a query...
  12. S

    Queries in a Form

    You can reference the value of a control on a form using the syntax: =Forms!formname!controlname
  13. S

    Query with multiple fields to filter

    Your structure is incorrect. It needs to be normalized. Something like this: tblDocuments DocumentID (Primary Key Autonumber) DocName DocLocation tblDocType DocTypeID (PK Autonumber) DocumentID (Foreign Key) DocTypesID (FK) tluDocTypes DocTypesID (PK Autonumber) DocTypesCode (1A through 8E)...
  14. S

    Normalization

    This looks fine to me, though you could take it to extremes with a separate address table and lookups for City, Postal code etc. You might also need to account for books that are collaborations and have multiple authors. That would require a junction table: tjxBookAuthors BookAuthorID BookID...
  15. S

    Automatic posting in TextBox/ComboBox in Forms

    That's because it shouldn't be in the table. One of the principles of relational databases is to eliminate redundant data. Since you can get to The Service Issue by joinng to that table using the IssueCode you don't need to store it in the Service Calls table. You just want to display it on the...
  16. S

    Report from Query - transpose Dates

    Go to File>Page Setup in Report design mode. Set the report to be in columns and set the columns to Across then Down.
  17. S

    Input value by Combox only

    There is no way to block them from using the keyboard. They can still type in a value instead of picking one. However, if you set the LimitToList property of the combo to Yes, they will get message that the value isn't in the list and it won't be accepted.
  18. S

    Record source problem on form

    Make sure the Data Entry property is set to No.
  19. S

    Unique records sorted by date

    Unique records eliminates any records that are total duplicates in every field.
  20. S

    IIf statement used for sorting data based on option group

    Try using the SWITCH function.
Back
Top Bottom