![]() |
|
|
Thread Tools | Display Modes |
#2
|
||||
|
||||
![]()
For the first question, change:
TopLevelFolder = GetFolder to something like: TopLevelFolder = "C:\Users" & Environ("Username") & "\Documents" That will cause the macro to start the search from your 'Documents' folder - you can drill down to a lower folder for the starting point, if you prefer. Regarding the second question, you can use the Application.OnTime method to run a macro at a specified time or interval. For example: Code:
Private Sub Document_Open() Call Main End Sub Code:
Application.OnTime When:=Now + TimeValue("01:00:00"), Name:="Main", Tolerance:=0 As for your third question, you could insert: Code:
If .InlineShapes.Count > 0 Then With .InlineShapes(1).PictureFormat .CropBottom = 110 .CropTop = 165 End With End If .RemoveDocumentInformation (wdRDIAll) and: .Close SaveChanges:=True
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Timer for outlook | DuncanH | Outlook | 0 | 02-28-2017 08:45 PM |
Can you add a count down timer? | breakout | PowerPoint | 0 | 01-09-2015 10:41 PM |
Countdown Timer | mcdanita | PowerPoint | 0 | 03-08-2012 12:51 PM |
Timer in ppt 2007 | Dave4500 | PowerPoint | 0 | 01-22-2011 06:56 PM |
![]() |
papamadre | Forum Support | 1 | 10-24-2009 06:26 AM |