Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Sub ExportFromOutlook()
  2. Dim dteStart As Date
  3. Dim dteEnd As Date
  4.  
  5. dteStart = InputBox("What is the start date?", "Export Outlook Calendar")
  6. dteEnd = InputBox("What is the end date?", "Export Outlook Calendar")
  7. Call GetCalData(dteStart, dteEnd)
  8. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement