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!

Search results for query: *

  1. bubba100

    Excel 2000 VBA Form error on workbook open

    Is this error with any Excel file or just this one? Have you looked at the references, it should indicate which one it can't find. You indicate you are using 64 bit operating system. Does that mean you are using Windows 7 AND Excel 2000?
  2. bubba100

    Access 2013 VBA CopyFromRecordSet opens Excel Window

    I only have office 2007 but what about oExcel.Activeworkbook.visible=false?
  3. bubba100

    Kill Command removing other files than what specified?

    What happens if you save to a different location the unzipped file first?
  4. bubba100

    Assist to run Access parameter query from VBA or ADO

    I have used this method in the past. This is 'a' way. Duane's suggestion is better. I have not given you everything so some of this won't make sense. Dim strName As String Dim db As DAO.Database Dim rst As DAO.Recordset Dim RST1 As DAO.Recordset Dim RSRepAud As DAO.Recordset Dim RSOnRoad As...
  5. bubba100

    Adding contents of second table to body of email

    Clive, you could use a query that returns the detail for the record id from the first query. The contents of a table are a recordset, the results of a query are a recordset. You have already created a recordset to pull the email address and the account name. Now create a second recordeset...
  6. bubba100

    VBA to Link to Network path instead of Network Drive - but Reverts back to Network Drive?

    This works for my needs. I would give proper credit to the person who wrote this if I knew who did. Wasn't me. Put this in a module and call it (fRefreshLinks). Option Compare Database Option Explicit '***************** Code Start *************** Function fRefreshLinks() As Boolean Dim...
  7. bubba100

    Please Improve My Slow User Defined Function, Excel 2010 VBA

    Every time I have to deal with data from an outside source in Excel I first run the following. 'Remove pesky spaces Dim rCell As Range Dim rText As Range Set rText = Cells.SpecialCells( _ xlCellTypeConstants, _ xlTextValues) For Each rCell In rText rCell.Value = Trim(rCell) If...
  8. bubba100

    Compacting Back End on server that doesn't have the Access app installed

    Shouldn't matter the location of the Application. The Access Application that has opened the db is the one that is compacting it. Is the backend data only? If so you might not save much by compacting it.
  9. bubba100

    Running Excel Modules from Access

    You might try xlApp.Application.Run "formatDepAllow12Months"
  10. bubba100

    Copy Last Record Button

    What about the shortcut key Ctrl'
  11. bubba100

    Moved Data to SQL Server - Now Slow

    I have noticed when Access links to SQL tables manual searching takes much longer than with a query. I have no experience with SQL 2008. I would then suggest that you use a query. You could set the shortcut CtlF to open your own small form that "looks" very similar but uses a query to find...
  12. bubba100

    Access 2007 slow

    James have you looked at http://allenbrowne.com/Access2007.html Plus are you running the most current version of 2007, are you current on all the updates?
  13. bubba100

    Reports and Forms not opening

    Then it sounds like the USER has a permissions limitation to the folder(s) that contain your database.
  14. bubba100

    Why do fomulas disappear and get replaced by values after using VBA?

    Under Format>Cell>Number what is the setting for offending cells? Just a guess it might be Text.
  15. bubba100

    Method 'Open' of object 'Workbooks' failed

    When the code fails move the cursor over Workbookname it should give the file name you are trying to open. Does it? Have you compared the References between the machines?
  16. bubba100

    Excell file not opening

    If your file is hidden Gavin is correct. There are shortcut keys to hide the current window (the active file) Ctrl-W-H while shortcut Ctrl-W-U unhides. Maybe two or three times a year I get a frantic call "my file is gone". Somehow they hide it. Hopefully this will take care of you.
  17. bubba100

    Excell file not opening

    You state that when you try and open the file it does nothing. Does that mean Excel does nothing- it just sits there or it does nothing and opened a blank Excel screen that is gray. Try opening Excel first then create a new blank workbook. If you can, then with the blank workbook open either...
  18. bubba100

    How do you do a continue or NEXT in a For Next Loop

    How about helping us out, can you show what you have to this point? FYI- there are several Access forums, this one is used mostly for all except Access, but sense you asked here we will try and answer here.
  19. bubba100

    Help with Linking Excel to acees

    To look at the data in Excel that is contained in an Access db try using MSQuery.

Part and Inventory Search

Back
Top