Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by darall

  1. darall

    Send eMail with an image included

    I forgot to mention I am using Access 2003
  2. darall

    Send eMail with an image included

    I have a click-button on a form that uses the form data to send an eMail. This is working great, however I have been asked if the eMail can include an image header in the message like the company logo. Is there any way to do this? I tried playing with pulling in an OLE table field with no...
  3. darall

    Help with faq701-4233 - Concatenate Multiple Child Records

    I am having another problem with this feature… My query is working great now, however I have duplicate records due to the one to many relationship. When I turn on the Totals feature in the query it makes the query run extremely slow. Without the grouping it takes 30 seconds to run, with...
  4. darall

    Help with faq701-4233 - Concatenate Multiple Child Records

    Thank you PHV, that silly "'" gets me every time! The code works perfectly now.
  5. darall

    Help with faq701-4233 - Concatenate Multiple Child Records

    I have added the code from faq701-4233 and created a query with the following code: SELECT tblEngagement_ClarifyData_Subcase.CaseNumber, Concatenate("SELECT [OwnerID] FROM tblEngagement_ClarifyData_Subcase WHERE [CaseNumber] =" & [CaseNumber],"; ") AS [Case] FROM...
  6. darall

    Backend Read-Only in Access 2002

    There is no lock file that's what's weird.
  7. darall

    Backend Read-Only in Access 2002

    I don't think I clearly stated what is going on. No one can edit records using the front end because the back-end is read-only. I need multiple users to be able to go in and edit their data in the database. I have record-level locking set as the default for the database. But somehow when we...
  8. darall

    Backend Read-Only in Access 2002

    I have a shared database where the back-end sits on a network drive and the front end is on each user's PC. For some reason the database is modifying itself to be a read only database. No changes are made it just changes to read only. The file properties do not show read-only, but when you...
  9. darall

    Display custom message in place of #Error

    Thanks PHV! That didn't work but it got me to the answer! So simple, yet I have been struggling with it for days! =IIf(IsError(Forms!frmProjectData_PM!sfrmProjectBudget_Summary.Form!HI_BudgetColorID)=-1,"Please complete Tab 1 prior to completing this Tab","") Thank you!!!!
  10. darall

    Display custom message in place of #Error

    I have a form with several subforms on it. Each subform is on a different Tab using the Tab control. I am pulling information from the first tab onto the second by setting the default value of the field to the control on the first tab...
  11. darall

    Split field in query using a semicolon separator

    Leslie, Thanks for the info, however I was hoping for a more automated way. I would have to re-create the table with the split data every time we wanted fresh data which is several times a week. I also need to be able to pass this on to folks who want to run the query ad-hoc and don't have...
  12. darall

    Split field in query using a semicolon separator

    I have data that is pulling into an Access database from another source. In this table there is a field called Tasks which is made up of four pieces of data separated by semi-colons. I do not have the control over the database or data to change how the pull is setup I can only query on the...
  13. darall

    Dropped WAN Links with Access Database?

    I have recently developed an Access 2002 database for our Project Management office. The database has a back end with two front end files; one for the administrator and one for the Project Managers. The PMO asked for network space to put the database where approx 150 users from three locations...
  14. darall

    #Error message when there is no related data

    Here is the query I am having problems with: SELECT qryList_Resources_TS.strR_FullName AS Resource, qryHours_Available_SelectMonth.M01_Available, qryList_Resources_TS.strL1_Team, qryList_Resources_TS.strL2_Team, qryList_Resources_TS.strL3_Team FROM qryList_Resources_TS LEFT JOIN...
  15. darall

    #Error message when there is no related data

    I have two tables; one that contains time spent on projects by resource and the second is a master list of resources. I have a query that relates the two tables with the Resource ID where it includes all records from tblListResources and the related records from tblProjectHours: Joe...

Part and Inventory Search

Back
Top