-
-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from yang991178/1.1.0
Version 1.1.0
- Loading branch information
Showing
33 changed files
with
683 additions
and
778 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Option Explicit | ||
|
||
Dim objShell, objFSO, objFile, objFolder | ||
Dim objFolderItem, colItems, objFont | ||
Dim strFileName | ||
|
||
|
||
Const FONTS = &H14& ' Fonts Folder | ||
|
||
' Instantiate Objects | ||
Set objShell = CreateObject("Shell.Application") | ||
Set objFolder = objShell.Namespace(FONTS) | ||
Set objFolderItem = objFolder.Self | ||
Set colItems = objFolder.Items | ||
Set objFSO = CreateObject("Scripting.FileSystemObject") | ||
|
||
For Each objFont in colItems | ||
WScript.StdOut.WriteLine(objFont.Path & vbtab & objFont.Name) | ||
Next | ||
|
||
Set objShell = nothing | ||
Set objFile = nothing | ||
Set objFolder = nothing | ||
Set objFolderItem = nothing | ||
Set colItems = nothing | ||
Set objFont = nothing | ||
Set objFSO = nothing | ||
|
||
wscript.quit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.