PC Review


Reply
Thread Tools Rate Thread

Code to change code in a sheet and workbook module

 
 
Otto Moehrbach
Guest
Posts: n/a
 
      10th Nov 2007
Excel XP and Win XP
I have used code furnished by Chip Pearson to copy a module from one
file to another. I believe, maybe I'm wrong, that this code deals with
regular modules only. My question now is: Can this be done with a sheet or
workbook module? And how? Thanks for your time. Otto


 
Reply With Quote
 
 
 
 
Chip Pearson
Guest
Posts: n/a
 
      10th Nov 2007
Try something like the following. You'll need a reference to the
Extensibility library.

Sub CopySheetModule()
Dim ThisVBP As VBIDE.VBProject
Dim ThatVBP As VBIDE.VBProject

Dim ThisVBComp As VBIDE.VBComponent
Dim ThatVBComp As VBIDE.VBComponent

Dim S As String

Set ThisVBP = ThisWorkbook.VBProject
Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE

Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE

With ThisVBComp.CodeModule
S = .Lines(1, .CountOfLines)
End With

With ThatVBComp.CodeModule
.DeleteLines 1, .CountOfLines
.AddFromString S
End With

End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)

"Otto Moehrbach" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Excel XP and Win XP
> I have used code furnished by Chip Pearson to copy a module from one
> file to another. I believe, maybe I'm wrong, that this code deals with
> regular modules only. My question now is: Can this be done with a sheet
> or workbook module? And how? Thanks for your time. Otto
>


 
Reply With Quote
 
LabrGuy Bob R
Guest
Posts: n/a
 
      10th Nov 2007
Hello Chip, is there a way to place into the code the activation of the
reference that you speak about to the Extensibility library.
Thanks
BOB R


"Chip Pearson" <(E-Mail Removed)> wrote in message
news:88883672-73C8-41E1-9330-(E-Mail Removed)...
> Try something like the following. You'll need a reference to the
> Extensibility library.
>
> Sub CopySheetModule()
> Dim ThisVBP As VBIDE.VBProject
> Dim ThatVBP As VBIDE.VBProject
>
> Dim ThisVBComp As VBIDE.VBComponent
> Dim ThatVBComp As VBIDE.VBComponent
>
> Dim S As String
>
> Set ThisVBP = ThisWorkbook.VBProject
> Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE
>
> Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
> Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE
>
> With ThisVBComp.CodeModule
> S = .Lines(1, .CountOfLines)
> End With
>
> With ThatVBComp.CodeModule
> .DeleteLines 1, .CountOfLines
> .AddFromString S
> End With
>
> End Sub
>
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel, 10 Years
> Pearson Software Consulting
> www.cpearson.com
> (email on the web site)
>
> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Excel XP and Win XP
>> I have used code furnished by Chip Pearson to copy a module from one
>> file to another. I believe, maybe I'm wrong, that this code deals with
>> regular modules only. My question now is: Can this be done with a sheet
>> or workbook module? And how? Thanks for your time. Otto
>>

>



 
Reply With Quote
 
Otto Moehrbach
Guest
Posts: n/a
 
      11th Nov 2007
Chip
I'm learning things here that I've never been into before. And I thank
you for that.
The code you gave me is for a sheet module and I can put it to good use.
How would I modify that code to work with the Workbook module? Thanks for
your time. Otto
"Chip Pearson" <(E-Mail Removed)> wrote in message
news:88883672-73C8-41E1-9330-(E-Mail Removed)...
> Try something like the following. You'll need a reference to the
> Extensibility library.
>
> Sub CopySheetModule()
> Dim ThisVBP As VBIDE.VBProject
> Dim ThatVBP As VBIDE.VBProject
>
> Dim ThisVBComp As VBIDE.VBComponent
> Dim ThatVBComp As VBIDE.VBComponent
>
> Dim S As String
>
> Set ThisVBP = ThisWorkbook.VBProject
> Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE
>
> Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
> Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE
>
> With ThisVBComp.CodeModule
> S = .Lines(1, .CountOfLines)
> End With
>
> With ThatVBComp.CodeModule
> .DeleteLines 1, .CountOfLines
> .AddFromString S
> End With
>
> End Sub
>
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel, 10 Years
> Pearson Software Consulting
> www.cpearson.com
> (email on the web site)
>
> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Excel XP and Win XP
>> I have used code furnished by Chip Pearson to copy a module from one
>> file to another. I believe, maybe I'm wrong, that this code deals with
>> regular modules only. My question now is: Can this be done with a sheet
>> or workbook module? And how? Thanks for your time. Otto
>>

>



 
Reply With Quote
 
Otto Moehrbach
Guest
Posts: n/a
 
      11th Nov 2007
Chip
I noticed that setting the Extensibility reference does not stay put
when I shut down Excel and reopen it. Is that normal behavior? Thanks for
your time. Otto
"Chip Pearson" <(E-Mail Removed)> wrote in message
news:88883672-73C8-41E1-9330-(E-Mail Removed)...
> Try something like the following. You'll need a reference to the
> Extensibility library.
>
> Sub CopySheetModule()
> Dim ThisVBP As VBIDE.VBProject
> Dim ThatVBP As VBIDE.VBProject
>
> Dim ThisVBComp As VBIDE.VBComponent
> Dim ThatVBComp As VBIDE.VBComponent
>
> Dim S As String
>
> Set ThisVBP = ThisWorkbook.VBProject
> Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE
>
> Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
> Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE
>
> With ThisVBComp.CodeModule
> S = .Lines(1, .CountOfLines)
> End With
>
> With ThatVBComp.CodeModule
> .DeleteLines 1, .CountOfLines
> .AddFromString S
> End With
>
> End Sub
>
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel, 10 Years
> Pearson Software Consulting
> www.cpearson.com
> (email on the web site)
>
> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Excel XP and Win XP
>> I have used code furnished by Chip Pearson to copy a module from one
>> file to another. I believe, maybe I'm wrong, that this code deals with
>> regular modules only. My question now is: Can this be done with a sheet
>> or workbook module? And how? Thanks for your time. Otto
>>

>



 
Reply With Quote
 
Chip Pearson
Guest
Posts: n/a
 
      11th Nov 2007
> I noticed that setting the Extensibility reference does not stay put
> when I shut down Excel and reopen it. Is that normal behavior?


No, that is not normal behavior. The reference will come and go as that
workbook is opened or closed, but that workbook should always have that
reference set. References are part of the workbook, so every workbook that
needs to use a reference must have it checked in the VBProject.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)

"Otto Moehrbach" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Chip
> I noticed that setting the Extensibility reference does not stay put
> when I shut down Excel and reopen it. Is that normal behavior? Thanks
> for your time. Otto
> "Chip Pearson" <(E-Mail Removed)> wrote in message
> news:88883672-73C8-41E1-9330-(E-Mail Removed)...
>> Try something like the following. You'll need a reference to the
>> Extensibility library.
>>
>> Sub CopySheetModule()
>> Dim ThisVBP As VBIDE.VBProject
>> Dim ThatVBP As VBIDE.VBProject
>>
>> Dim ThisVBComp As VBIDE.VBComponent
>> Dim ThatVBComp As VBIDE.VBComponent
>>
>> Dim S As String
>>
>> Set ThisVBP = ThisWorkbook.VBProject
>> Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE
>>
>> Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
>> Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE
>>
>> With ThisVBComp.CodeModule
>> S = .Lines(1, .CountOfLines)
>> End With
>>
>> With ThatVBComp.CodeModule
>> .DeleteLines 1, .CountOfLines
>> .AddFromString S
>> End With
>>
>> End Sub
>>
>>
>> --
>> Cordially,
>> Chip Pearson
>> Microsoft MVP - Excel, 10 Years
>> Pearson Software Consulting
>> www.cpearson.com
>> (email on the web site)
>>
>> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Excel XP and Win XP
>>> I have used code furnished by Chip Pearson to copy a module from one
>>> file to another. I believe, maybe I'm wrong, that this code deals with
>>> regular modules only. My question now is: Can this be done with a
>>> sheet or workbook module? And how? Thanks for your time. Otto
>>>

>>

>
>


 
Reply With Quote
 
BobR
Guest
Posts: n/a
 
      11th Nov 2007
Chip, would it be possible to have the code (on startup) to go to C:\Program
Files\Common Files\microsoft shared\VBA
VBA6\VBE6EXT.OLB and activate the Extensibility reference automatically or
will that work. I too have the problem Otto has in losing the connection in
that workbook each time. I had read about a number but couldn't find one,
only the file and location.

Or is there another way for that to happen????
Thanks
BOB


"Chip Pearson" <(E-Mail Removed)> wrote in message
news:777977A5-BEC7-4025-BF9B-(E-Mail Removed)...
>> I noticed that setting the Extensibility reference does not stay put
>> when I shut down Excel and reopen it. Is that normal behavior?

>
> No, that is not normal behavior. The reference will come and go as that
> workbook is opened or closed, but that workbook should always have that
> reference set. References are part of the workbook, so every workbook that
> needs to use a reference must have it checked in the VBProject.
>
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel, 10 Years
> Pearson Software Consulting
> www.cpearson.com
> (email on the web site)
>
> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Chip
>> I noticed that setting the Extensibility reference does not stay put
>> when I shut down Excel and reopen it. Is that normal behavior? Thanks
>> for your time. Otto
>> "Chip Pearson" <(E-Mail Removed)> wrote in message
>> news:88883672-73C8-41E1-9330-(E-Mail Removed)...
>>> Try something like the following. You'll need a reference to the
>>> Extensibility library.
>>>
>>> Sub CopySheetModule()
>>> Dim ThisVBP As VBIDE.VBProject
>>> Dim ThatVBP As VBIDE.VBProject
>>>
>>> Dim ThisVBComp As VBIDE.VBComponent
>>> Dim ThatVBComp As VBIDE.VBComponent
>>>
>>> Dim S As String
>>>
>>> Set ThisVBP = ThisWorkbook.VBProject
>>> Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE
>>>
>>> Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
>>> Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE
>>>
>>> With ThisVBComp.CodeModule
>>> S = .Lines(1, .CountOfLines)
>>> End With
>>>
>>> With ThatVBComp.CodeModule
>>> .DeleteLines 1, .CountOfLines
>>> .AddFromString S
>>> End With
>>>
>>> End Sub
>>>
>>>
>>> --
>>> Cordially,
>>> Chip Pearson
>>> Microsoft MVP - Excel, 10 Years
>>> Pearson Software Consulting
>>> www.cpearson.com
>>> (email on the web site)
>>>
>>> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> Excel XP and Win XP
>>>> I have used code furnished by Chip Pearson to copy a module from one
>>>> file to another. I believe, maybe I'm wrong, that this code deals with
>>>> regular modules only. My question now is: Can this be done with a
>>>> sheet or workbook module? And how? Thanks for your time. Otto
>>>>
>>>

>>
>>

>



 
Reply With Quote
 
Chip Pearson
Guest
Posts: n/a
 
      11th Nov 2007
I wouldn't use the file name since you cannot be sure that the DLL will
always be in the same place on one machine as it is on another machine.
Instead, use the AddFromGUID method.

On Error Resume Next
ThisWorkbook.VBProject.References.AddFromGuid _
GUID:="{0002E157-0000-0000-C000-000000000046}", _
Major:=0, Minor:=0

The problem here is that if there is no reference to VBIDE and VBA decides
to compile the code before the code to add the reference is run, you'll get
compiler errors (that cannot be trapped with an On Error statement).


--
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)


"BobR" <(E-Mail Removed)> wrote in message
news:AUEZi.1621$(E-Mail Removed)...
> Chip, would it be possible to have the code (on startup) to go to
> C:\Program Files\Common Files\microsoft shared\VBA
> VBA6\VBE6EXT.OLB and activate the Extensibility reference automatically
> or will that work. I too have the problem Otto has in losing the
> connection in that workbook each time. I had read about a number but
> couldn't find one, only the file and location.
>
> Or is there another way for that to happen????
> Thanks
> BOB
>
>
> "Chip Pearson" <(E-Mail Removed)> wrote in message
> news:777977A5-BEC7-4025-BF9B-(E-Mail Removed)...
>>> I noticed that setting the Extensibility reference does not stay put
>>> when I shut down Excel and reopen it. Is that normal behavior?

>>
>> No, that is not normal behavior. The reference will come and go as that
>> workbook is opened or closed, but that workbook should always have that
>> reference set. References are part of the workbook, so every workbook
>> that needs to use a reference must have it checked in the VBProject.
>>
>>
>> --
>> Cordially,
>> Chip Pearson
>> Microsoft MVP - Excel, 10 Years
>> Pearson Software Consulting
>> www.cpearson.com
>> (email on the web site)
>>
>> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Chip
>>> I noticed that setting the Extensibility reference does not stay put
>>> when I shut down Excel and reopen it. Is that normal behavior? Thanks
>>> for your time. Otto
>>> "Chip Pearson" <(E-Mail Removed)> wrote in message
>>> news:88883672-73C8-41E1-9330-(E-Mail Removed)...
>>>> Try something like the following. You'll need a reference to the
>>>> Extensibility library.
>>>>
>>>> Sub CopySheetModule()
>>>> Dim ThisVBP As VBIDE.VBProject
>>>> Dim ThatVBP As VBIDE.VBProject
>>>>
>>>> Dim ThisVBComp As VBIDE.VBComponent
>>>> Dim ThatVBComp As VBIDE.VBComponent
>>>>
>>>> Dim S As String
>>>>
>>>> Set ThisVBP = ThisWorkbook.VBProject
>>>> Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE
>>>>
>>>> Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
>>>> Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE
>>>>
>>>> With ThisVBComp.CodeModule
>>>> S = .Lines(1, .CountOfLines)
>>>> End With
>>>>
>>>> With ThatVBComp.CodeModule
>>>> .DeleteLines 1, .CountOfLines
>>>> .AddFromString S
>>>> End With
>>>>
>>>> End Sub
>>>>
>>>>
>>>> --
>>>> Cordially,
>>>> Chip Pearson
>>>> Microsoft MVP - Excel, 10 Years
>>>> Pearson Software Consulting
>>>> www.cpearson.com
>>>> (email on the web site)
>>>>
>>>> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
>>>> news:(E-Mail Removed)...
>>>>> Excel XP and Win XP
>>>>> I have used code furnished by Chip Pearson to copy a module from
>>>>> one file to another. I believe, maybe I'm wrong, that this code deals
>>>>> with regular modules only. My question now is: Can this be done with
>>>>> a sheet or workbook module? And how? Thanks for your time. Otto
>>>>>
>>>>
>>>
>>>

>>

>
>


 
Reply With Quote
 
Otto Moehrbach
Guest
Posts: n/a
 
      11th Nov 2007
Thanks Chip, that explains it. I thought the setting was global, not
workbook peculiar. Otto
"Chip Pearson" <(E-Mail Removed)> wrote in message
news:777977A5-BEC7-4025-BF9B-(E-Mail Removed)...
>> I noticed that setting the Extensibility reference does not stay put
>> when I shut down Excel and reopen it. Is that normal behavior?

>
> No, that is not normal behavior. The reference will come and go as that
> workbook is opened or closed, but that workbook should always have that
> reference set. References are part of the workbook, so every workbook that
> needs to use a reference must have it checked in the VBProject.
>
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel, 10 Years
> Pearson Software Consulting
> www.cpearson.com
> (email on the web site)
>
> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Chip
>> I noticed that setting the Extensibility reference does not stay put
>> when I shut down Excel and reopen it. Is that normal behavior? Thanks
>> for your time. Otto
>> "Chip Pearson" <(E-Mail Removed)> wrote in message
>> news:88883672-73C8-41E1-9330-(E-Mail Removed)...
>>> Try something like the following. You'll need a reference to the
>>> Extensibility library.
>>>
>>> Sub CopySheetModule()
>>> Dim ThisVBP As VBIDE.VBProject
>>> Dim ThatVBP As VBIDE.VBProject
>>>
>>> Dim ThisVBComp As VBIDE.VBComponent
>>> Dim ThatVBComp As VBIDE.VBComponent
>>>
>>> Dim S As String
>>>
>>> Set ThisVBP = ThisWorkbook.VBProject
>>> Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE
>>>
>>> Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
>>> Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE
>>>
>>> With ThisVBComp.CodeModule
>>> S = .Lines(1, .CountOfLines)
>>> End With
>>>
>>> With ThatVBComp.CodeModule
>>> .DeleteLines 1, .CountOfLines
>>> .AddFromString S
>>> End With
>>>
>>> End Sub
>>>
>>>
>>> --
>>> Cordially,
>>> Chip Pearson
>>> Microsoft MVP - Excel, 10 Years
>>> Pearson Software Consulting
>>> www.cpearson.com
>>> (email on the web site)
>>>
>>> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> Excel XP and Win XP
>>>> I have used code furnished by Chip Pearson to copy a module from one
>>>> file to another. I believe, maybe I'm wrong, that this code deals with
>>>> regular modules only. My question now is: Can this be done with a
>>>> sheet or workbook module? And how? Thanks for your time. Otto
>>>>
>>>

>>
>>

>



 
Reply With Quote
 
Otto Moehrbach
Guest
Posts: n/a
 
      11th Nov 2007
Chip
I had another question in this thread regarding altering the code you
gave me for manipulating code in a sheet module, to make it work with a
Workbook module. You may have overlooked that query and I would appreciate
your help with this. Here is the query:

Chip
I'm learning things here that I've never been into before. And I thank
you for that.
The code you gave me is for a sheet module and I can put it to good use.
How would I modify that code to work with the Workbook module? Thanks for
your time. Otto
"Chip Pearson" <(E-Mail Removed)> wrote in message
news:777977A5-BEC7-4025-BF9B-(E-Mail Removed)...
>> I noticed that setting the Extensibility reference does not stay put
>> when I shut down Excel and reopen it. Is that normal behavior?

>
> No, that is not normal behavior. The reference will come and go as that
> workbook is opened or closed, but that workbook should always have that
> reference set. References are part of the workbook, so every workbook that
> needs to use a reference must have it checked in the VBProject.
>
>
> --
> Cordially,
> Chip Pearson
> Microsoft MVP - Excel, 10 Years
> Pearson Software Consulting
> www.cpearson.com
> (email on the web site)
>
> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Chip
>> I noticed that setting the Extensibility reference does not stay put
>> when I shut down Excel and reopen it. Is that normal behavior? Thanks
>> for your time. Otto
>> "Chip Pearson" <(E-Mail Removed)> wrote in message
>> news:88883672-73C8-41E1-9330-(E-Mail Removed)...
>>> Try something like the following. You'll need a reference to the
>>> Extensibility library.
>>>
>>> Sub CopySheetModule()
>>> Dim ThisVBP As VBIDE.VBProject
>>> Dim ThatVBP As VBIDE.VBProject
>>>
>>> Dim ThisVBComp As VBIDE.VBComponent
>>> Dim ThatVBComp As VBIDE.VBComponent
>>>
>>> Dim S As String
>>>
>>> Set ThisVBP = ThisWorkbook.VBProject
>>> Set ThatVBP = Workbooks("Book2").VBProject '<<< CHANGE
>>>
>>> Set ThisVBComp = ThisVBP.VBComponents("Sheet1") '<<< CHANGE
>>> Set ThatVBComp = ThatVBP.VBComponents("Sheet1") '<<< CHANGE
>>>
>>> With ThisVBComp.CodeModule
>>> S = .Lines(1, .CountOfLines)
>>> End With
>>>
>>> With ThatVBComp.CodeModule
>>> .DeleteLines 1, .CountOfLines
>>> .AddFromString S
>>> End With
>>>
>>> End Sub
>>>
>>>
>>> --
>>> Cordially,
>>> Chip Pearson
>>> Microsoft MVP - Excel, 10 Years
>>> Pearson Software Consulting
>>> www.cpearson.com
>>> (email on the web site)
>>>
>>> "Otto Moehrbach" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> Excel XP and Win XP
>>>> I have used code furnished by Chip Pearson to copy a module from one
>>>> file to another. I believe, maybe I'm wrong, that this code deals with
>>>> regular modules only. My question now is: Can this be done with a
>>>> sheet or workbook module? And how? Thanks for your time. Otto
>>>>
>>>

>>
>>

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Workbook code to Module Code Chad Microsoft Excel Programming 4 5th Aug 2008 12:53 AM
CODE FOR SHEET MODULE K Microsoft Excel Programming 6 25th Feb 2008 05:26 PM
Run worksheet module code from workbook module? keithb Microsoft Excel Programming 1 14th Aug 2005 04:04 AM
VB Code Location; sheet, workbook, module =?Utf-8?B?SmFtZXMgSGFtaWx0b24=?= Microsoft Excel Programming 2 22nd Jun 2005 08:08 AM
Sheet Code Module: copying code to matthewgdodds@hotmail.com Microsoft Excel Programming 2 14th Dec 2004 01:57 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:15 PM.