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 strongm 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 MacroScope

  1. MacroScope

    Trying to programmatically convert an Access 2007 report to pdf

    Thank you for the help. I actually found the solution myself, and it's really just one command line. DoCmd.OutputTo acOutputReport, "*Report Name*", acFormatPDF, "*Full File Path*" & "*Name of file*.pdf", False Thank you again for going out of your way to find a solution. I always appreciate...
  2. MacroScope

    Trying to programmatically convert an Access 2007 report to pdf

    I created an Access report that is essentially a warning letter that is to be automatically generated when certain conditions apply. I want to print a copy of the letter for snail-mailing, and I want to save a copy as a .pdf file. Of course, opening in print mode is a simple matter, so the...
  3. MacroScope

    How can I make an SQL Server 2012 table programmatically read-only or writable?

    Is there anyway you know of that will allow me to do what I suggested? I want to correct the problem but if I can force the table to be read only except when the form is open that would temporarily solve my problem and probably provide me with an error message when the writing attempt to occur...
  4. MacroScope

    How can I make an SQL Server 2012 table programmatically read-only or writable?

    I agree but I don't know where this is originating and it's not happening in the normal way through a form. That's why I'm trying for this workaround. Nothing would make me happier than to see an error message that points me to where it is coming from. In the meantime, it will at least...
  5. MacroScope

    How can I make an SQL Server 2012 table programmatically read-only or writable?

    I have a 25 station Access 2007/SQL Server 2012 db that has developed an annoying glitch. One particular table, called Processors, which holds name, user name, phone numbers, and other data for processors on the floor is intermittently changing the name of a processor from the correct name to...
  6. MacroScope

    "object or class does not support the set of events" error on form events in Access 2007 and likely other versions as well

    I'm posting this to offer a fix for those who may encounter the above error. I have nearly 20 years experience with Access, and I never encountered the error until today. It just seemed to materialize out of nowhere but it occurred with every event procedure on one form. After troubleshooting my...
  7. MacroScope

    "object or class does not support the set of events" error on form events in Access 2007 s

    I honestly didn't know where to post it. I just wanted to let others know. It can save a ton of headaches. Everything I tried based on Google searches failed, and this was one of those desperation, shotgun things. It was a tool in my arsenal that I hadn't tried and I just figured what the...
  8. MacroScope

    "object or class does not support the set of events" error on form events in Access 2007 s

    I'm posting this to offer a fix for those who may encounter the above error. I have nearly 20 years experience with Access, and I never encountered the error until today. It just seemed to materialize out of nowhere but it occurred with every event procedure on one form. After troubleshooting...
  9. MacroScope

    Need help creating an expression that identifies the last week day or Saturday of the month

    Actually, I think I got it. I believe IIf(Weekday(Date())=7 And (Format(Date()+1,"d")=1 Or Format(Date()+2,"d")=1),True,IIf(Weekday(Date())<>1 And Format(Date()+1,"d")=1,True,False)) will return True or False on the desired days.
  10. MacroScope

    Need help creating an expression that identifies the last week day or Saturday of the month

    I have an operation that I'd like to carry out on user login on the last weekday or Saturday before the end of the month. Assume the 1st is on Sunday or Monday, the expression would evaluate as true on Saturday, and if the 1st is on, say, Tuesday, then it would evaluate as true on Monday. I...
  11. MacroScope

    Need a query that will list only one name from many companies in db that have several names

    Thank you, Duane. Your simple and obvious solution solved the problem for me! It's amazing how something so obvious can be unseen, and then it's like, "OF COURSE!" when someone points it out. I appreciate the help.
  12. MacroScope

    Need a query that will list only one name from many companies in db that have several names

    I haven't written the logic to create the list of potential recipients. That's what I'm struggling with. What I'll do when I have the results I need is to use that query as the Record Source for a form. I don't need assistance with the actual emailing logic. It's written and works fine. I...
  13. MacroScope

    Need a query that will list only one name from many companies in db that have several names

    I'm satisfied with any random contact. Eventually all will be contacted, but I don't have any preference as to which is first, etc.

Part and Inventory Search

Back
Top