LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 206
Default Watermark centered in PageLay-out

Hi there,

I would like to put a "watermark" on my Excel sheets.
I got some nice examples on the sites of:

Aaron Blood
http://www.xl-logic.com/pages/formulas.html
Ron de Bruin
http://www.rondebruin.nl/files/Watermark.zip

I was wondering whether it is possible to place the watermark centered
of a Page.
=If you look at your Excel in Page-break preview it ain't possible to
put the watermarks there where you see the apges?

Best Regards Sige

Ron's Code:
Option Explicit

Sub WaterMarkerVP()
Dim Mud As Integer, Dum As Object
Mud = 200
Application.ScreenUpdating = False
Dim Page As Integer
For Page = 1 To 14
ActiveSheet.Shapes.AddTextEffect(msoTextEffect1, _
"Financial Planning", "Algerian", _
30#, msoFalse, msoFalse, 121.5, 105#).Select
Selection.Name = "Dum"
With Selection
.ShapeRange.Fill.Visible = msoTrue
.ShapeRange.Fill.Solid
.ShapeRange.Fill.ForeColor.SchemeColor = 22
.ShapeRange.Fill.Transparency = 0.5
.ShapeRange.Line.Visible = msoFalse
.ShapeRange.IncrementRotation -26.22
'.ShapeRange.IncrementLeft
.ShapeRange.IncrementTop Mud
End With
Mud = Mud + 650
Next Page
Range("I18").Select
End Sub

Sub WaterMarkerGone()
Application.ScreenUpdating = False
Dim Page As Integer
For Page = 1 To 14
On Error Resume Next
ActiveSheet.Shapes("Dum").Select
Selection.Cut
Next Page
End Sub

 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Keep Video Player Centered Richard Excel Discussion (Misc queries) 1 February 14th 10 07:31 PM
Keep chart centered to the page Mary Charts and Charting in Excel 0 October 7th 08 02:05 PM
Cell alignment centered Simon Fischer Excel Programming 1 July 21st 05 11:01 AM
Centered and right justified using ticks Brent Johnson Excel Discussion (Misc queries) 1 April 13th 05 12:25 AM
Centered Text Not Working in saved htm Wayne Wengert Excel Programming 2 April 6th 05 08:35 AM


All times are GMT +1. The time now is 06:13 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"