About 813,000 results
Open links in new tab
  1. How to solve Excel VBA: Compile error in hidden module

    Dec 17, 2020 · Open Excel file which is having issue, press Alt + F11 go into its Visual Basic Editor. From the Tools menu select References ( Note, if references option is disabled in tools …

  2. Excel VBA Run-time error '13' Type mismatch - Stack Overflow

    Jan 17, 2012 · I created a macro for a file and first it was working fine, but today I've been opening and restarting the file and macro hundreds of times and I'm always getting the following error: …

  3. Run Time Error 5 - Invalid Procedure Call or Argument

    Looks like you might have an issue supplying a name to the table that is a fixed value. You are calling it PivotTable6 but that name is only available the first time you create the pivot. After …

  4. vba - Run-time error '-2146959355 (80080005)': server execution …

    Jan 31, 2024 · First and foremost, Microsoft does not currently recommend, and does not support, Automation of Microsoft Office applications from any unattended, non-interactive client …

  5. How can I make mousewheel work in VB6 IDE? - Stack Overflow

    Jun 24, 2009 · Info from the Author: This is a small program that will make your mouse's scroll wheel work in various older programs - mainly Visual Basic 6's code window. I noticed a lot of …

  6. Where do I download : VBRun60sp6.exe (which installs Visual Basic …

    Dec 7, 2009 · For those looking for the Visual Basic 6.0: Run-Time Redistribution Pack (SP6) (vbrun60sp6): none of the official Microsoft source has it anymore. So I ended up digging …

  7. VBA Runtime error '-2147221164 (80040154)': class not Registered

    Feb 24, 2021 · I developed a class library in Visual Studio 2019 using the .NET framework. Before building the project, I registered the.dll file to interop COM, and this process gave me a .tlb file. …

  8. Getting System Error &H80070057 (-2147024809) - Stack Overflow

    Apr 20, 2022 · What worked to me was, I followed the instructions from this link on Microsoft site (), then I zipped all old files that could be linked and deleted the source files from my …

  9. How to add a reference programmatically using VBA

    In order to easily use the VBE's object model, you need to add a reference to Microsoft Visual Basic for Application Extensibility. (VBIDE) In order to run Excel VBA code that changes …

  10. How to clear memory to prevent "out of memory error" in VBA?

    Jan 18, 2013 · I am running VBA code on a large Excel spreadsheet. How do I clear the memory between procedures/calls to prevent an "out of memory" issue occurring?