Change Code using VBA

mond007

New Member
Joined
Oct 9, 2008
Messages
34
I am trying to change hundreds of workbooks using VBA. I have a main drivers workbook with the following code.. in a simple file processing loop.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p>
<o:p></o:p>
I got this from the following thread. <o:p></o:p>
http://www.ozgrid.com/forum/showthread.php?t=13006<o:p></o:p>
<o:p></o:p>
Code:
[/FONT][/COLOR]
[COLOR=black][FONT=Verdana][/FONT][/COLOR] 
[COLOR=black][FONT=Verdana]Workbooks.Open (vFile)                                 
Application.EnableEvents = True   
                
opened_file= ActiveWorkbook.Name<o:p></o:p>[/FONT][/COLOR]
[COLOR=black][FONT=Verdana]Workbooks(current_file_name).Activate 'Just in case.
With Application.VBE.ActiveVBProject.VBComponents("Lib01_update_charts").CodeModule
    If .Find("gl_worksheet_name", 1, 1, 80, -1) Then
        
        For lngLine = .ProcStartLine("Activate", vbext_pk_Proc) To .ProcCountLines("Activate", vbext_pk_Proc)
            strCodeLines = .Lines(lngLine, 1)
            If InStr(1, strCodeLines, "gl_worksheet_name", vbTextCompare) > 0 Then
                
                'Perform my Find and Replace. etc etc etc...
                
                Exit For
            End If
        Next
         
    End If
End With[/FONT][/COLOR]
[COLOR=black][FONT=Verdana][/FONT][/COLOR] 
[COLOR=black][FONT=Verdana]
<o:p></o:p>

<o:p></o:p>
I have tried :
<o:p>
Code:
<o:p> </o:p>Application.VBE.VBProject([COLOR=black][FONT=Verdana]opened_file[/FONT][/COLOR]).VBComponents("Lib01_update_charts").CodeModule
I am getting a error 1004 "Object does not support this property or method. yet when I try and search for a code module in the current VB project it manages to find it.
It seems I need to swtich to the correct VBE Project before trying to find the componant as I can find componants that are in my current project but not in the WorkBook I have opened.
Please forgive me if I am missing something obvious.
Thanks in Advance. </o:p>
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Forum statistics

Threads
1,224,222
Messages
6,177,221
Members
452,765
Latest member
Erka Gizli

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top