-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDigitalWatchMacros.DSM
More file actions
54 lines (51 loc) · 2.61 KB
/
DigitalWatchMacros.DSM
File metadata and controls
54 lines (51 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
'------------------------------------------------------------------------------
'FILE DESCRIPTION: New Macro File
'------------------------------------------------------------------------------
Sub InsertDigitalWatchGPL()
ActiveDocument.Selection.StartOfDocument
ActiveDocument.Selection = "/**"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = " * " & ActiveDocument.Name
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* Copyright (C) 2005 "
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "*"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* This file is part of DigitalWatch, a free DTV watching and recording"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* program for the VisionPlus DVB-T."
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "*"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* DigitalWatch is free software; you can redistribute it and/or modify"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* it under the terms of the GNU General Public License as published by"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* the Free Software Foundation; either version 2 of the License, or"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* (at your option) any later version."
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "*"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* DigitalWatch is distributed in the hope that it will be useful,"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* but WITHOUT ANY WARRANTY; without even the implied warranty of"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* GNU General Public License for more details."
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "*"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* You should have received a copy of the GNU General Public License"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* along with DigitalWatch; if not, write to the Free Software"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection = "*/"
ActiveDocument.Selection.NewLine
ActiveDocument.Selection.NewLine
ActiveDocument.Selection.LineUp dsMove, 20
ActiveDocument.Selection.EndOfLine
End Sub