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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. scriverb

    Referencing Outlook 2nd account via VBA in ACCESS

    Please see the thread: Thread705-1765159 Bob Scriver MSU Spartan
  2. scriverb

    VBA Monitor Non-Default folder in Outlook

    I want to monitor a secondary Outlook account from ACCESS. I have a user with a second account that is being monitored in Outlook. If I change the Default account so that 2nd account is the Default I can perform all the actions necessary but I can't have it be the default account as they need...
  3. scriverb

    Connect String to link to MS Exchange 2013 Contacts folder

    I have a MS ACCESS 2010 FE and BE loaded to a pair of Citrix servers. The FE is loaded to a folder on the C drive of the server and the BE is stored on the server in a folder along with the WorkGroup. I have a linked table to the Outlook All Public folders area in a folder for the company...
  4. scriverb

    MS Exchange 2013 - VBA code to relink tables for company Contacts

    I have a MS ACCESS 2010 FE and BE loaded to a pair of Citrix servers. The FE is loaded to a folder on the C drive of the server and the BE is stored on the server in a folder along with the WorkGroup. I have a linked table to the Outlook All Public folders area in a folder for the company...
  5. scriverb

    Connection String to MS Exchange 2013

    thanks I was thinking I may not have the correct forum. Is it possible to transfer this question to the other forum? Bob Scriver MSU Spartan
  6. scriverb

    Connection String to MS Exchange 2013

    I have a MS ACCESS 2010 FE and BE loaded to a pair of Citrix servers. The FE is loaded to a folder on the C drive of the server and the BE is stored on the server in a folder along with the WorkGroup. I have a linked table to the Outlook All Public folders area in a folder for the company...
  7. scriverb

    Picture in my report

    Yes, I have run reports with pics and the pic file is embedded in the SnapShot formatted report file. I have found that the SnapShot option works really well. Our office had SS Viewers on everyone's computer and this afforded us the ability to send out canned reports via email easily. The SS...
  8. scriverb

    Picture in my report

    That's a great idea with the Hyperlink. This saves on loading time to your database. By just using a thumbnail of the pic for the database it will speed things up. Good luck. Bob Scriver MSU Spartan
  9. scriverb

    Picture in my report

    When you run the code what does the below code display? MsgBox "Path: " & CommonDialog1.FileName Bob Scriver MSU Spartan
  10. scriverb

    Picture in my report

    I haven't been on the site for some time but the format that I posted initially was the following: Me![PictureImage].Properties("Picture") = Me![ImagePath] I think you have modified this somewhat and that me be causing your problem. Use the format above and see how that works. Bob Scriver...
  11. scriverb

    Using Variables In SQL Select Statement

    dandot: I am no longer on a network to check this out but I believe this to be true. Normally, there is a back-end database that holds your changing data tables. In addition each of your users has a front-end database that has your static tables, forms, reports, queries, and modules. The FE...
  12. scriverb

    Incrementing Invoice numbers. Almost there....

    Sorry but you also may want to display err messages or perform other code when it is not ERR - 3022. You will have to add that code. Just a reminder. Bob Scriver MSU Spartan
  13. scriverb

    Incrementing Invoice numbers. Almost there....

    One of the easiest ways I have found to do this in a multi-user environment is this. Create a Unique Index(no dups) for the InvoiceNo field so that as you then monitor the ERR value in your error trapping code behind a SAVE record button. Here is some sample code that will update the record...
  14. scriverb

    Incrementing Invoice numbers. Almost there....

    As I don't know your process, normally the InvoiceNo gets assigned as the record is created. That is the time to do the DMax function and assign the value +1 to the InvoiceNo field. You just must be careful that two people are not entering a record at exactly the same time and try to update...
  15. scriverb

    Incrementing Invoice numbers. Almost there....

    It seems that the DMax function only executes against the original recordset within this query so it will not give you a newly updated Maximum InvoiceNo each time. So, we will have to use a subroutine to loop through the Null InvoiceNo's and update them individually. This code should work for...
  16. scriverb

    Problem with a Function as criteria in a query

    Let's make another adjustment to the code I gave you. Clearer head this morning. Must have been dreaming about this last night. Query1: SELECT tblProjects.Project as Project, 2 as SortOrder, tblProjects.Year as Year, tblProjects.DateEntered as DateEntered FROM tblProjects WHERE...
  17. scriverb

    Problem with a Function as criteria in a query

    Sorry about that, it is late and I am beat. Here is a correction. Use this SQL and save as a seperate saved query. Then create another query taking in this query as the input recordset and sort on your fields with SortOrder being the primary. Query1: SELECT tblProjects.Project as Project, 2...
  18. scriverb

    Problem with a Function as criteria in a query

    Give this a try: SELECT tblProjects.Project as Project, SortOrder as 2 FROM tblProjects WHERE (((tblProjects.SiteID)=[Forms]![frmMaster]![ID])) ORDER BY SortOrder, tblProjects.Year DESC , tblProjects.DateEntered DESC UNION SELECT "All" as Project, SortOrder as 1 FROM tblProjects GROUP BY...
  19. scriverb

    Problem with a Function as criteria in a query

    Change your Where statement to the following: WHERE InStr(1,TargetStr(),[tblProjects].[Project])>0 You only need to evealuate if the field string value[Project] is within the Target string. Bob Scriver MSU Spartan
  20. scriverb

    Problem with a Function as criteria in a query

    Show me the SQL from your query and how are you using the function and selecting the records. Are you trying to use the Instr function to look for that particular value in the string? Bob Scriver MSU Spartan

Part and Inventory Search

Back
Top