List Info

Thread: Re: running a macro takes longer than expected




Re: running a macro takes longer than expected
user name
2007-01-31 15:47:44
When you use the macro recorder you get tons of stuff that 
Hey Brent,

When you use the macro recorder you get tons of stuff that
isn't necessary. Post your code you got with the recorder
and we can probably help get you all cleaned up and running
faster. 

Thanks,
Alesa
----- Original Message ----
From: Brent Fulton <fultonbBERKELEY.EDU>
To: EXCEL-GPEACH.EASE.LSOFT.COM
Sent: Wednesday, January 31, 2007 2:57:30 PM
Subject: running a macro takes longer than expected


Dear Group,

I am using Excel in Office 2003 on Windows XP and recorded a
macro using
mouse clicks that takes almost 45 seconds to run, but only
involves
approximately 10 mouse clicks. Does anyone know why this
would take so long
to run, and is there any way to reduce the run time? 

The macro is: I highlighted a print area, then began
recording (with
relative reference on): file/print area/set print area;
file/page
setup/created a footer; file/page setup/said print landscape
and fit to one
page; file/page set up/center horizontally. (I did each file
page set up
separately because I read that a macro only records the
active tab when you
click OK on a multi-layer dialogue box.)

Btw, is there a list of already assigned MS shortcut keys
(e.g. Ctrl-C). I
don't want to overwrite any.

I thank you in advance.

Brent Fulton

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G


 
____________________________________________________________
________________________
We won't tell. Get more on shows you hate to love 
(and love to hate): Yahoo! TV's Guilty Pleasures list.
http://tv.yahoo.c
om/collections/265

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G

Re: running a macro takes longer than expected
user name
2007-01-31 16:01:08
In addition to what Alesa said ( Hi girl) the print setup
macro will always 
slow things down so only use the items that you need or,
better yet, don't 
use the macro for anything but the print area (or even set
up a defined name 
for that) and then maybe you would only need the footer.
Post YOUR code.


Don Guillett
SalesAid Software
dguillett1austin.rr.com
----- Original Message ----- 
From: "Alesa Ward" <alesa_wardYAHOO.COM>
To: <EXCEL-GPEACH.EASE.LSOFT.COM>
Sent: Wednesday, January 31, 2007 3:47 PM
Subject: Re: running a macro takes longer than expected


When you use the macro recorder you get tons of stuff that
Hey Brent,

When you use the macro recorder you get tons of stuff that
isn't necessary. 
Post your code you got with the recorder and we can probably
help get you 
all cleaned up and running faster.

Thanks,
Alesa
----- Original Message ----
From: Brent Fulton <fultonbBERKELEY.EDU>
To: EXCEL-GPEACH.EASE.LSOFT.COM
Sent: Wednesday, January 31, 2007 2:57:30 PM
Subject: running a macro takes longer than expected


Dear Group,

I am using Excel in Office 2003 on Windows XP and recorded a
macro using
mouse clicks that takes almost 45 seconds to run, but only
involves
approximately 10 mouse clicks. Does anyone know why this
would take so long
to run, and is there any way to reduce the run time?

The macro is: I highlighted a print area, then began
recording (with
relative reference on): file/print area/set print area;
file/page
setup/created a footer; file/page setup/said print landscape
and fit to one
page; file/page set up/center horizontally. (I did each file
page set up
separately because I read that a macro only records the
active tab when you
click OK on a multi-layer dialogue box.)

Btw, is there a list of already assigned MS shortcut keys
(e.g. Ctrl-C). I
don't want to overwrite any.

I thank you in advance.

Brent Fulton

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G



____________________________________________________________
________________________
We won't tell. Get more on shows you hate to love
(and love to hate): Yahoo! TV's Guilty Pleasures list.
http://tv.yahoo.c
om/collections/265

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G


-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.17.17/661 - Release
Date: 1/30/2007 
11:30 PM

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G

Re: running a macro takes longer than expected
user name
2007-01-31 16:08:08
Thank you all for your help. Here is my code. (Remember, I
did each file
page set up
separately because I read that a macro only records the
active tab when you
click OK on a multi-layer dialogue box. Maybe that is not
the
case??--Although I don't know VB, based on the duplicate
code below, it
seems as though the macro records the entire tab.)

Also, is there a list of already assigned MS shortcut keys
(e.g. Ctrl-C). I
don't want to overwrite any.


Sub printarea_landscape()
'
' printarea_landscape Macro
' Macro recorded 1/31/2007 by Brent Fulton
'
' Keyboard Shortcut: Ctrl+t
'
    ActiveSheet.PageSetup.PrintArea = "$A$4:$B$5"
    With ActiveSheet.PageSetup
        .PrintTitleRows = ""
        .PrintTitleColumns = ""
    End With
    ActiveSheet.PageSetup.PrintArea = "$A$4:$B$5"
    With ActiveSheet.PageSetup
        .LeftHeader = ""
        .CenterHeader = ""
        .RightHeader = ""
        .LeftFooter = ""
        .CenterFooter = ""
        .RightFooter = ""
        .LeftMargin = Application.InchesToPoints(0.75)
        .RightMargin = Application.InchesToPoints(0.75)
        .TopMargin = Application.InchesToPoints(1)
        .BottomMargin = Application.InchesToPoints(1)
        .HeaderMargin = Application.InchesToPoints(0.5)
        .FooterMargin = Application.InchesToPoints(0.5)
        .PrintHeadings = False
        .PrintGridlines = False
        .PrintComments = xlPrintNoComments
        .PrintQuality = 600
        .CenterHorizontally = False
        .CenterVertically = False
        .Orientation = xlLandscape
        .Draft = False
        .PaperSize = xlPaperLetter
        .FirstPageNumber = xlAutomatic
        .Order = xlDownThenOver
        .BlackAndWhite = False
        .Zoom = False
        .FitToPagesWide = 1
        .FitToPagesTall = 1
        .PrintErrors = xlPrintErrorsDisplayed
    End With
    With ActiveSheet.PageSetup
        .PrintTitleRows = ""
        .PrintTitleColumns = ""
    End With
    ActiveSheet.PageSetup.PrintArea = "$A$4:$B$5"
    With ActiveSheet.PageSetup
        .LeftHeader = ""
        .CenterHeader = ""
        .RightHeader = ""
        .LeftFooter = ""
        .CenterFooter = ""
        .RightFooter = ""
        .LeftMargin = Application.InchesToPoints(0.75)
        .RightMargin = Application.InchesToPoints(0.75)
        .TopMargin = Application.InchesToPoints(1)
        .BottomMargin = Application.InchesToPoints(1)
        .HeaderMargin = Application.InchesToPoints(0.5)
        .FooterMargin = Application.InchesToPoints(0.5)
        .PrintHeadings = False
        .PrintGridlines = False
        .PrintComments = xlPrintNoComments
        .PrintQuality = 600
        .CenterHorizontally = True
        .CenterVertically = False
        .Orientation = xlLandscape
        .Draft = False
        .PaperSize = xlPaperLetter
        .FirstPageNumber = xlAutomatic
        .Order = xlDownThenOver
        .BlackAndWhite = False
        .Zoom = False
        .FitToPagesWide = 1
        .FitToPagesTall = 1
        .PrintErrors = xlPrintErrorsDisplayed
    End With
    With ActiveSheet.PageSetup
        .PrintTitleRows = ""
        .PrintTitleColumns = ""
    End With
    ActiveSheet.PageSetup.PrintArea = "$A$4:$B$5"
    With ActiveSheet.PageSetup
        .LeftHeader = ""
        .CenterHeader = ""
        .RightHeader = ""
        .LeftFooter = "&F"
        .CenterFooter = "&D  &T"
        .RightFooter = "Page &P"
        .LeftMargin = Application.InchesToPoints(0.75)
        .RightMargin = Application.InchesToPoints(0.75)
        .TopMargin = Application.InchesToPoints(1)
        .BottomMargin = Application.InchesToPoints(1)
        .HeaderMargin = Application.InchesToPoints(0.5)
        .FooterMargin = Application.InchesToPoints(0.5)
        .PrintHeadings = False
        .PrintGridlines = False
        .PrintComments = xlPrintNoComments
        .PrintQuality = 600
        .CenterHorizontally = True
        .CenterVertically = False
        .Orientation = xlLandscape
        .Draft = False
        .PaperSize = xlPaperLetter
        .FirstPageNumber = xlAutomatic
        .Order = xlDownThenOver
        .BlackAndWhite = False
        .Zoom = False
        .FitToPagesWide = 1
        .FitToPagesTall = 1
        .PrintErrors = xlPrintErrorsDisplayed
    End With
End Sub 

-----Original Message-----
From: MS Excel General Q & A List [mailto:EXCEL-GPEACH.EASE.LSOFT.COM] On
Behalf Of Don Guillett
Sent: Wednesday, January 31, 2007 2:01 PM
To: EXCEL-GPEACH.EASE.LSOFT.COM
Subject: Re: running a macro takes longer than expected

In addition to what Alesa said ( Hi girl) the print setup
macro will always
slow things down so only use the items that you need or,
better yet, don't
use the macro for anything but the print area (or even set
up a defined name
for that) and then maybe you would only need the footer.
Post YOUR code.


Don Guillett
SalesAid Software
dguillett1austin.rr.com
----- Original Message -----
From: "Alesa Ward" <alesa_wardYAHOO.COM>
To: <EXCEL-GPEACH.EASE.LSOFT.COM>
Sent: Wednesday, January 31, 2007 3:47 PM
Subject: Re: running a macro takes longer than expected


When you use the macro recorder you get tons of stuff that
Hey Brent,

When you use the macro recorder you get tons of stuff that
isn't necessary. 
Post your code you got with the recorder and we can probably
help get you 
all cleaned up and running faster.

Thanks,
Alesa
----- Original Message ----
From: Brent Fulton <fultonbBERKELEY.EDU>
To: EXCEL-GPEACH.EASE.LSOFT.COM
Sent: Wednesday, January 31, 2007 2:57:30 PM
Subject: running a macro takes longer than expected


Dear Group,

I am using Excel in Office 2003 on Windows XP and recorded a
macro using
mouse clicks that takes almost 45 seconds to run, but only
involves
approximately 10 mouse clicks. Does anyone know why this
would take so long
to run, and is there any way to reduce the run time?

The macro is: I highlighted a print area, then began
recording (with
relative reference on): file/print area/set print area;
file/page
setup/created a footer; file/page setup/said print landscape
and fit to one
page; file/page set up/center horizontally. (I did each file
page set up
separately because I read that a macro only records the
active tab when you
click OK on a multi-layer dialogue box.)

Btw, is there a list of already assigned MS shortcut keys
(e.g. Ctrl-C). I
don't want to overwrite any.

I thank you in advance.

Brent Fulton

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G



____________________________________________________________
________________
________
We won't tell. Get more on shows you hate to love
(and love to hate): Yahoo! TV's Guilty Pleasures list.
http://tv.yahoo.c
om/collections/265

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G


-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.17.17/661 - Release
Date: 1/30/2007 
11:30 PM

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G

Re: running a macro takes longer than expected
user name
2007-01-31 16:15:51
Reread all our suggestions>rewrite your code to be
ONE>comment out( ' in 
front of line)  whatever is NOT necessary>try again and
post back here.

Don Guillett
SalesAid Software
dguillett1austin.rr.com
----- Original Message ----- 
From: "Brent Fulton" <fultonbBERKELEY.EDU>
To: <EXCEL-GPEACH.EASE.LSOFT.COM>
Sent: Wednesday, January 31, 2007 4:08 PM
Subject: Re: running a macro takes longer than expected


> Thank you all for your help. Here is my code.
(Remember, I did each file
> page set up
> separately because I read that a macro only records the
active tab when 
> you
> click OK on a multi-layer dialogue box. Maybe that is
not the
> case??--Although I don't know VB, based on the
duplicate code below, it
> seems as though the macro records the entire tab.)
>
> Also, is there a list of already assigned MS shortcut
keys (e.g. Ctrl-C). 
> I
> don't want to overwrite any.
>
>
> Sub printarea_landscape()
> '
> ' printarea_landscape Macro
> ' Macro recorded 1/31/2007 by Brent Fulton
> '
> ' Keyboard Shortcut: Ctrl+t
> '
>    ActiveSheet.PageSetup.PrintArea =
"$A$4:$B$5"
>    With ActiveSheet.PageSetup
>        .PrintTitleRows = ""
>        .PrintTitleColumns = ""
>    End With
>    ActiveSheet.PageSetup.PrintArea =
"$A$4:$B$5"
>    With ActiveSheet.PageSetup
>        .LeftHeader = ""
>        .CenterHeader = ""
>        .RightHeader = ""
>        .LeftFooter = ""
>        .CenterFooter = ""
>        .RightFooter = ""
>        .LeftMargin = Application.InchesToPoints(0.75)
>        .RightMargin = Application.InchesToPoints(0.75)
>        .TopMargin = Application.InchesToPoints(1)
>        .BottomMargin = Application.InchesToPoints(1)
>        .HeaderMargin = Application.InchesToPoints(0.5)
>        .FooterMargin = Application.InchesToPoints(0.5)
>        .PrintHeadings = False
>        .PrintGridlines = False
>        .PrintComments = xlPrintNoComments
>        .PrintQuality = 600
>        .CenterHorizontally = False
>        .CenterVertically = False
>        .Orientation = xlLandscape
>        .Draft = False
>        .PaperSize = xlPaperLetter
>        .FirstPageNumber = xlAutomatic
>        .Order = xlDownThenOver
>        .BlackAndWhite = False
>        .Zoom = False
>        .FitToPagesWide = 1
>        .FitToPagesTall = 1
>        .PrintErrors = xlPrintErrorsDisplayed
>    End With
>    With ActiveSheet.PageSetup
>        .PrintTitleRows = ""
>        .PrintTitleColumns = ""
>    End With
>    ActiveSheet.PageSetup.PrintArea =
"$A$4:$B$5"
>    With ActiveSheet.PageSetup
>        .LeftHeader = ""
>        .CenterHeader = ""
>        .RightHeader = ""
>        .LeftFooter = ""
>        .CenterFooter = ""
>        .RightFooter = ""
>        .LeftMargin = Application.InchesToPoints(0.75)
>        .RightMargin = Application.InchesToPoints(0.75)
>        .TopMargin = Application.InchesToPoints(1)
>        .BottomMargin = Application.InchesToPoints(1)
>        .HeaderMargin = Application.InchesToPoints(0.5)
>        .FooterMargin = Application.InchesToPoints(0.5)
>        .PrintHeadings = False
>        .PrintGridlines = False
>        .PrintComments = xlPrintNoComments
>        .PrintQuality = 600
>        .CenterHorizontally = True
>        .CenterVertically = False
>        .Orientation = xlLandscape
>        .Draft = False
>        .PaperSize = xlPaperLetter
>        .FirstPageNumber = xlAutomatic
>        .Order = xlDownThenOver
>        .BlackAndWhite = False
>        .Zoom = False
>        .FitToPagesWide = 1
>        .FitToPagesTall = 1
>        .PrintErrors = xlPrintErrorsDisplayed
>    End With
>    With ActiveSheet.PageSetup
>        .PrintTitleRows = ""
>        .PrintTitleColumns = ""
>    End With
>    ActiveSheet.PageSetup.PrintArea =
"$A$4:$B$5"
>    With ActiveSheet.PageSetup
>        .LeftHeader = ""
>        .CenterHeader = ""
>        .RightHeader = ""
>        .LeftFooter = "&F"
>        .CenterFooter = "&D  &T"
>        .RightFooter = "Page &P"
>        .LeftMargin = Application.InchesToPoints(0.75)
>        .RightMargin = Application.InchesToPoints(0.75)
>        .TopMargin = Application.InchesToPoints(1)
>        .BottomMargin = Application.InchesToPoints(1)
>        .HeaderMargin = Application.InchesToPoints(0.5)
>        .FooterMargin = Application.InchesToPoints(0.5)
>        .PrintHeadings = False
>        .PrintGridlines = False
>        .PrintComments = xlPrintNoComments
>        .PrintQuality = 600
>        .CenterHorizontally = True
>        .CenterVertically = False
>        .Orientation = xlLandscape
>        .Draft = False
>        .PaperSize = xlPaperLetter
>        .FirstPageNumber = xlAutomatic
>        .Order = xlDownThenOver
>        .BlackAndWhite = False
>        .Zoom = False
>        .FitToPagesWide = 1
>        .FitToPagesTall = 1
>        .PrintErrors = xlPrintErrorsDisplayed
>    End With
> End Sub
>
> -----Original Message-----
> From: MS Excel General Q & A List
[mailto:EXCEL-GPEACH.EASE.LSOFT.COM] On
> Behalf Of Don Guillett
> Sent: Wednesday, January 31, 2007 2:01 PM
> To: EXCEL-GPEACH.EASE.LSOFT.COM
> Subject: Re: running a macro takes longer than
expected
>
> In addition to what Alesa said ( Hi girl) the print
setup macro will 
> always
> slow things down so only use the items that you need
or, better yet, don't
> use the macro for anything but the print area (or even
set up a defined 
> name
> for that) and then maybe you would only need the
footer. Post YOUR code.
>
>
> Don Guillett
> SalesAid Software
> dguillett1austin.rr.com
> ----- Original Message -----
> From: "Alesa Ward" <alesa_wardYAHOO.COM>
> To: <EXCEL-GPEACH.EASE.LSOFT.COM>
> Sent: Wednesday, January 31, 2007 3:47 PM
> Subject: Re: running a macro takes longer than
expected
>
>
> When you use the macro recorder you get tons of stuff
that
> Hey Brent,
>
> When you use the macro recorder you get tons of stuff
that isn't 
> necessary.
> Post your code you got with the recorder and we can
probably help get you
> all cleaned up and running faster.
>
> Thanks,
> Alesa
> ----- Original Message ----
> From: Brent Fulton <fultonbBERKELEY.EDU>
> To: EXCEL-GPEACH.EASE.LSOFT.COM
> Sent: Wednesday, January 31, 2007 2:57:30 PM
> Subject: running a macro takes longer than expected
>
>
> Dear Group,
>
> I am using Excel in Office 2003 on Windows XP and
recorded a macro using
> mouse clicks that takes almost 45 seconds to run, but
only involves
> approximately 10 mouse clicks. Does anyone know why
this would take so 
> long
> to run, and is there any way to reduce the run time?
>
> The macro is: I highlighted a print area, then began
recording (with
> relative reference on): file/print area/set print area;
file/page
> setup/created a footer; file/page setup/said print
landscape and fit to 
> one
> page; file/page set up/center horizontally. (I did each
file page set up
> separately because I read that a macro only records the
active tab when 
> you
> click OK on a multi-layer dialogue box.)
>
> Btw, is there a list of already assigned MS shortcut
keys (e.g. Ctrl-C). I
> don't want to overwrite any.
>
> I thank you in advance.
>
> Brent Fulton
>
>
------------------------------------------------------------
--------------
> The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
> international's LISTSERV(R) software.  For
subscription/signoff info
> and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
>                             COPYRIGHT INFO:
> http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G
>
>
>
>
____________________________________________________________
________________
> ________
> We won't tell. Get more on shows you hate to love
> (and love to hate): Yahoo! TV's Guilty Pleasures list.
> http://tv.yahoo.c
om/collections/265
>
>
------------------------------------------------------------
--------------
> The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
> international's LISTSERV(R) software.  For
subscription/signoff info
> and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
>                             COPYRIGHT INFO:
> http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G
>
>
> -- 
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.5.432 / Virus Database: 268.17.17/661 -
Release Date: 1/30/2007
> 11:30 PM
>
>
------------------------------------------------------------
--------------
> The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
> international's LISTSERV(R) software.  For
subscription/signoff info
> and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
>                             COPYRIGHT INFO:
> http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G
>
>
------------------------------------------------------------
--------------
> The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
> international's LISTSERV(R) software.  For
subscription/signoff info
> and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
>                             COPYRIGHT INFO:
> http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G
>
>
> -- 
> No virus found in this incoming message.
> Checked by AVG Free Edition.
> Version: 7.5.432 / Virus Database: 268.17.17/661 -
Release Date: 1/30/2007 
> 11:30 PM
>
> 

------------------------------------------------------------
--------------
The EXCEL-G list is hosted on a Windows NT(TM) machine
running L-Soft
international's LISTSERV(R) software.  For
subscription/signoff info
and archives, see htt
p://peach.ease.lsoft.com/archives/excel-g.html .
                             COPYRIGHT INFO:
http://peach.ease.lsoft.com/scripts/wa
.exe?SHOWTPL=COPYRIGHT&L=EXCEL-G

[1-4]

about | contact  Other archives ( Real Estate discussion Medical topics )