regular code module

G

Guest

I was told to put something in a code module and something into a regular
code module. My problem is I know where to put it into a code module but
where do I find a regular code module?
This is what I have:

CODE MODULE:private Sub Workbook_SheetSelectionChange( _
ByVal Sh As Object, ByVal Target As Range)
Application.EnableEvents = False
SynchSheets
Application.EnableEvents = True
End Sub

REGULAR CODE MODULE:Sub SynchSheets()
' Duplicates the active sheet's active cell upperleft cell
' Across all worksheets
If TypeName(ActiveSheet) <> "Worksheet" Then Exit Sub
Dim UserSheet As Worksheet, sht As Worksheet
Dim TopRow As Long, LeftCol As Integer
Dim UserSel As String

Application.ScreenUpdating = False

' Remember the current sheet
Set UserSheet = ActiveSheet

' Store info from the active sheet
TopRow = ActiveWindow.ScrollRow
LeftCol = ActiveWindow.ScrollColumn
UserSel = ActiveWindow.RangeSelection.Address

' Loop through the worksheets
For Each sht In ActiveWorkbook.Worksheets
If sht.Visible Then 'skip hidden sheets
sht.Activate
Range(UserSel).Select
ActiveWindow.ScrollRow = TopRow
ActiveWindow.ScrollColumn = LeftCol
End If
Next sht

' Restore the original position
UserSheet.Activate
Application.ScreenUpdating = True
End Sub
 
B

Bob Phillips

The first bit goes in the Thisworkbook code module.

'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code

The second bit goes in what I think you mean by a code module, one created
by Insert>Module in the VBIDE.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
V

vezerid

In the VBA development environment (Alt+F11), at the left you see the
Project Explorer. The first macro is an event macro to detect
workbook-level events. It should be pasted to the module that opens
when you double-click the ThisWorkbook object.

For a regular code module, use Insert|Module. It will create a
"regular" code module called Module1 and open it. Paste the code in
there.

HTH
Kostis Vezerides
 
J

Jim Rech

Insert, Module in the VBE creates a new 'regular's module. Your "code
module" code goes in the ThisWorkbook module.

Semantically I think the term "code module" can refer to all workbook,
worksheet, userform and standard modules.

--
Jim
|I was told to put something in a code module and something into a regular
| code module. My problem is I know where to put it into a code module but
| where do I find a regular code module?
| This is what I have:
|
| CODE MODULE:private Sub Workbook_SheetSelectionChange( _
| ByVal Sh As Object, ByVal Target As Range)
| Application.EnableEvents = False
| SynchSheets
| Application.EnableEvents = True
| End Sub
|
| REGULAR CODE MODULE:Sub SynchSheets()
| ' Duplicates the active sheet's active cell upperleft cell
| ' Across all worksheets
| If TypeName(ActiveSheet) <> "Worksheet" Then Exit Sub
| Dim UserSheet As Worksheet, sht As Worksheet
| Dim TopRow As Long, LeftCol As Integer
| Dim UserSel As String
|
| Application.ScreenUpdating = False
|
| ' Remember the current sheet
| Set UserSheet = ActiveSheet
|
| ' Store info from the active sheet
| TopRow = ActiveWindow.ScrollRow
| LeftCol = ActiveWindow.ScrollColumn
| UserSel = ActiveWindow.RangeSelection.Address
|
| ' Loop through the worksheets
| For Each sht In ActiveWorkbook.Worksheets
| If sht.Visible Then 'skip hidden sheets
| sht.Activate
| Range(UserSel).Select
| ActiveWindow.ScrollRow = TopRow
| ActiveWindow.ScrollColumn = LeftCol
| End If
| Next sht
|
| ' Restore the original position
| UserSheet.Activate
| Application.ScreenUpdating = True
| End Sub
|
|
|
|
 
G

Gord Dibben

billy

The Code Module code goes into the Thisworkbook module.

For Regular code select Insert>Module


Gord Dibben Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top