サブフォルダがある、複数のファイルを
指定した1フォルダにコピーする。
for /f %%a ('dir /b/s c:\data') do (
copy %%a c:\bkup
)
2013年11月28日木曜日
2013年11月22日金曜日
word wdNotAMergeDocument
Table 4
. Merge document types. The MainDocumentType property classifies
documents into the various kinds of merge documents you can create.
Constant
|
Value
|
Constant
|
Value
|
wdNotAMergeDocument
|
-1
|
wdEnvelopes
|
2
|
wdFormLetters
|
|
wdCatalog
|
3
|
wdMailingLabels
|
1
|
2013年11月15日金曜日
複数バージョンのOfficeを使う時の注意点
複数バージョンのOfficeを使う時の注意点
インストールの順番は、古いバージョンからインストールを行う
オートメーションとかで利用されるのがレジストリに書かれているバージョンになる。
したがって
Excel 2003 を優先的に扱いたいのであれば、以下のコマンドを DOS シェルから実行する。
インストールの順番は、古いバージョンからインストールを行う
オートメーションとかで利用されるのがレジストリに書かれているバージョンになる。
したがって
Excel 2003 を優先的に扱いたいのであれば、以下のコマンドを DOS シェルから実行する。
"C:\Program Files\Microsoft Office\OFFICE11\excel.exe" /regserver
逆に Excel 2007 優先に再度変更したくなったら
"C:\Program Files\Microsoft Office\OFFICE12\excel.exe" /regserverを実行すればOKです。
WdOpenFormatクラス
Format
WdOpenFormatクラス | ||
---|---|---|
定数 | 値 | 内容 |
wdOpenFormatAuto | 0 | フォーマットの自動認識(既定値) |
wdOpenFormatDocument | 1 | Wordドキュメント |
wdOpenFormatTemplate | 2 | テンプレート |
wdOpenFormatRTF | 3 | リッチテキスト |
wdOpenFormatText | 4 | テキスト |
wdOpenFormatUnicodeText | 5 | - |
wdOpenFormatEncodedText | 5 | - |
wdOpenFormatAllWord | 6 | - |
wdOpenFormatWebPages | 7 | Webページ |
登録:
投稿 (Atom)