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: *

  • Users: AArt
  • Order by date
  1. AArt

    Visio file header information import?

    That gives me something to think about. But I don't want to have to open 65 Visio files. With the dbs, I was able to automate opening all the files (even from other professors' classes) by putting them in one directory. Then by creating a few tables and comparing, it was easy to get identical...
  2. AArt

    Visio file header information import?

    First, I apologize, I'm at a loss which forum to post this to. When my wife was teaching Access, I was able to create a db that pulled in her student projects and compare some key data to see if any were sharing their files (aka cheating). Now she's teaching a class where they turn in IS...
  3. AArt

    Error handler Only Rings Once - Excel 2007 error 1004

    I misread that the first time. Consider me duly educated. Thanks again.
  4. AArt

    Error handler Only Rings Once - Excel 2007 error 1004

    I wrote a function to parse the string, so yeah, that's one way. The error handler just seemed like it should work. Gruuu - I tried err.clear, certain you had solved the problem. But it didn't seem to help. Here's the code. Don't laugh, I'm self taught. Sub BigTest() ' ' BigTest Macro '...
  5. AArt

    Error handler Only Rings Once - Excel 2007 error 1004

    I'm creating and renaming sheets based on the customer name in a cell (truncated). Some of the customer names have colons, which are illegal, causing error 1004. The error code: On Error GoTo fixname Here's the rename code: TryNow: Sheets(cursheet).Select...
  6. AArt

    Can't suppress the Action Query Confirmation Dialog Box

    Yes, that works fine for code or macros. I don't remember having to confirm action queries when doing them manually, i.e clicking on them...
  7. AArt

    Can't suppress the Action Query Confirmation Dialog Box

    My company finally upgraded me to Access 2003. When I manually run a query, I get the Action Query Confirmation Dialog Box. I already cleared the Action Query check box in the Edit/Find tab of Options. I even went back in and checked it, then unchecked it again. Access Help just gives me is...
  8. AArt

    MS Graph quirk (one of many) - duplicate pages

    That did the trick!
  9. AArt

    Printing 4 pages on 1

    Create a new report. Use your 1/4 report as a subreport 4 times on the new report.
  10. AArt

    MS Graph quirk (one of many) - duplicate pages

    I'm building a report with a Graph on it. I got it looking good, with all the data on one page in landscape mode (Graph is only 7" wide, report is 7.5). For some reason it prints as 10 identical pages! Not 8, not 9, but 10... Anyone else ever see this?
  11. AArt

    Reportfield upside down

    You can set a field to run vertical, but I don't know of a way to make it upside down. I'm guessing you'd have to convert it to an image file, invert it, then display it. OR - create an upside down backwards font. Then reverse the order of the characters in your field before displaying them. WHY?
  12. AArt

    pulling data from tables in other DBs using DDE

    I know I've done this a long time a go. I'm trying to join this century and not use DAO. I pulled this right from the help files. I'm looping through all of the DBs in the directory and pulling the database creation date in the MsysObjects file. The looping is successful, but it crashes at the...
  13. AArt

    Strange New Message - M A can't print your object

    This is a strange twist: The report prints fine if there's data. The report prints fine if I remove all code from the Report_NoData sub If I try to trap the error, or even put a breakpoint in the NoData code (even the very first line!), nothing happens. It's as if the code never runs. It's like...
  14. AArt

    Strange New Message - M A can't print your object

    Other stuff prints no problema. Also, I removed the NoData code, and it prints fine, just blank. Not the end of the world, but I hate a gremlin I can't find.
  15. AArt

    Strange New Message - M A can't print your object

    I've been using the same DB's for years, and a few of them generate exception reports that are usually blank. So I have been using the simple code Private Sub Report_NoData(Cancel As Integer) Cancel = True End Sub The last 2 weeks, something changed. I get this MBox "Microsoft Access can't...
  16. AArt

    How do I update a form when a combobox selection is selected

    In other words, use the After Update event to trigger your record selection. You can also use On Change (try them both so you can see the difference), or use a command button to trigger it so the user has time to change his selection if he realizes he picked the wrong name.
  17. AArt

    Vanishing Favourites

    Never Mind. I found it in the WINNT folder.
  18. AArt

    Vanishing Favourites

    I just had mine vanish, I was online during a server reboot. My favorites are (were) on the Network, so I assumed it reset to C:\Documents and Settings\USername. I can't access my Registry, so I did the drag&drop from my H: drive. That worked, but it didn't actually copy them to the C drive...
  19. AArt

    Import Excel to Access through Coding

    Use the TransferSpreadsheet method. Your help file has all the details. Here's the example they give DoCmd.TransferSpreadsheet acImport, 3, _ "Employees","C:\Lotus\Newemps.wk3", True, "A1:G12"

Part and Inventory Search

Back
Top