Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8171187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T21:23:05+00:00 2026-06-06T21:23:05+00:00

I am looping thru all .xls documents in a directory and changing one line

  • 0

I am looping thru all .xls documents in a directory and changing one line in each files component “ThisWorkbook”

Everything works fine, the code opens the files and I can see in run time that the line “test” is inserted into ThisWorkbook. But the save does not work. Is the save function only for sheets? How do I save the changes in the Component?

  excelfile = Dir(path & "*.xls")
  Do While excelfile <> ""
    If excelfile <> "merni.xlsm" Then
        Set wbResults = Workbooks.Open(Filename:=path & excelfile)
        wbResults.Unprotect Password:=""
        DoEvents
        Set codeModule = wbResults.VBProject.VBComponents("ThisWorkbook").codeModule
        With codeModule.InsertLines(3, "test")
        End With
        wbResults.Save
        wbResults.Close
    End If
    excelfile = Dir
  Loop
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T21:23:08+00:00Added an answer on June 6, 2026 at 9:23 pm

    This code worked for me

    Sub AddTest()
    
        Dim wb As Workbook
        Dim cm As CodeModule
    
        Set wb = Workbooks.Open("C:\Users\dick\Book3.xls")
        Set cm = wb.VBProject.VBComponents.Item("ThisWorkbook").CodeModule
        cm.InsertLines 3, "test"
        wb.Save
        wb.Close
    
    End Sub
    

    But with this line

        With cm.InsertLines(3, "test"): End With
    

    It won’t event compile. InsertLines is a method and doesn’t return an object so I’m pretty sure you can’t use that with a With block.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a script for looping thru PHP files and renaming function calls
I have the following code that displays all folders and files within each folder.
Looping through each id retrieve value of objects in 1 dimentional array and 2
When looping recursively through folders with files containing spaces the shell script I use
So I have a class like this: def Word end and im looping thru
I am looping thru the ObjectStateEntry of EF so I can access enrty.Entity, I
My application will be looping thru the Virtual Nodes and check their data. I
I have a table that I am looping thru and would like to pull
I'm looking for a way to find Active Directory on the network (probably thru
I'm looking for the right logic to loop thru a recordset and fire an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.