B
bhodgins
Does anyone know how to customize the Michael Sayre's word template for
printing the Outlook Calendar? I emailed Michael about a month ago, but
haven't heard anything.
The template works beautifully, but I would like to expand the
templates margins and remove the carriage return at the top to allow
for more space on a busy calendar. Then create the weekends as half
size fields.
I noticed that the original Microsoft Word template made the weekends
half size, and upon comparing the two side by side in the VB editor, I
could not find the part to edit.
I understand the "handle no weekends case"
objTable.Columns(lSundayColumn).Select
With Selection
.Font.Hidden = True
.Font.Size = 1
End With
With objTable.Columns(lSundayColumn)
.Borders(wdBorderRight).Visible = False
.SetWidth columnwidth:=12, rulerstyle:=wdAdjustNone
But do not see anything for column width in the regular creation of the
calendar with weekends.
Anyone have any info on this. If I am posting this to the wrong group,
please let me know, but this does directly apply to pulling data from
the Outlook calendar.
Thanks,
Brad
printing the Outlook Calendar? I emailed Michael about a month ago, but
haven't heard anything.
The template works beautifully, but I would like to expand the
templates margins and remove the carriage return at the top to allow
for more space on a busy calendar. Then create the weekends as half
size fields.
I noticed that the original Microsoft Word template made the weekends
half size, and upon comparing the two side by side in the VB editor, I
could not find the part to edit.
I understand the "handle no weekends case"
objTable.Columns(lSundayColumn).Select
With Selection
.Font.Hidden = True
.Font.Size = 1
End With
With objTable.Columns(lSundayColumn)
.Borders(wdBorderRight).Visible = False
.SetWidth columnwidth:=12, rulerstyle:=wdAdjustNone
But do not see anything for column width in the regular creation of the
calendar with weekends.
Anyone have any info on this. If I am posting this to the wrong group,
please let me know, but this does directly apply to pulling data from
the Outlook calendar.
Thanks,
Brad