This file contains hidden or 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
| '1.オプション指定 | |
| Option Explicit | |
| '2.変数宣言 | |
| Dim strFileName | |
| Dim objApp | |
| Dim wshShell | |
| Dim fsObj | |
| Dim ext | |
| Dim excelExt |
This file contains hidden or 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
| '*************************************************************************************************** | |
| 'オプション: | |
| '*************************************************************************************************** | |
| '事前の変数宣言(Dim [変数] As [型])を必須とする | |
| Option Explicit | |
| '*************************************************************************************************** | |
| '定数宣言 | |
| '*************************************************************************************************** |
This file contains hidden or 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
| '*************************************************************************************************** | |
| '関数呼び出し | |
| '*************************************************************************************************** | |
| Sub 暗号化() | |
| MsgBox "password -> " & EncryptStringTripleDES("password") | |
| End Sub | |
| Sub 復号化() | |
| MsgBox "6pbpGQOC73TWEISe0qnwQA== -> " & DecryptStringTripleDES("6pbpGQOC73TWEISe0qnwQA==") | |
| End Sub |
This file contains hidden or 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
| [contact-form] | |
| [contact-field label="あなたの名前(Your Name)" type="name" required="true" /] | |
| [contact-field label="あなたのEメールアドレス(Your Email)" type="email" required="true" /] | |
| [contact-field label="質問・要望(Comment, Request)" type="textarea" required="true" /] | |
| [/contact-form] |
This file contains hidden or 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
| =CELL("FILENAME",$A$1) |
This file contains hidden or 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
| =MID(CELL("FILENAME",$A$1),FIND(CHAR(9),SUBSTITUTE(CELL("FILENAME",$A$1),"[",CHAR(9),LEN(CELL("FILENAME",$A$1))-LEN(SUBSTITUTE(CELL("FILENAME",$A$1),"[",""))))+1,FIND(CHAR(9),SUBSTITUTE(CELL("FILENAME",$A$1),"]",CHAR(9),LEN(CELL("FILENAME",$A$1))-LEN(SUBSTITUTE(CELL("FILENAME",$A$1),"]",""))))-FIND(CHAR(9),SUBSTITUTE(CELL("FILENAME",$A$1),"[",CHAR(9),LEN(CELL("FILENAME",$A$1))-LEN(SUBSTITUTE(CELL("FILENAME",$A$1),"[",""))))-1) |
This file contains hidden or 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
| =MID(CELL("FILENAME",$A$1),FIND(CHAR(9),SUBSTITUTE(CELL("FILENAME",$A$1),"[",CHAR(9),LEN(CELL("FILENAME",$A$1))-LEN(SUBSTITUTE(CELL("FILENAME",$A$1),"[",""))))+1,FIND(CHAR(9),SUBSTITUTE(CELL("FILENAME",$A$1),".",CHAR(9),LEN(CELL("FILENAME",$A$1))-LEN(SUBSTITUTE(CELL("FILENAME",$A$1),".",""))))-FIND(CHAR(9),SUBSTITUTE(CELL("FILENAME",$A$1),"[",CHAR(9),LEN(CELL("FILENAME",$A$1))-LEN(SUBSTITUTE(CELL("FILENAME",$A$1),"[",""))))-1) |
This file contains hidden or 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
| =RIGHT(CELL("FILENAME",$A$1),LEN(CELL("FILENAME",$A$1))-FIND(CHAR(9),SUBSTITUTE(CELL("FILENAME",$A$1),"]",CHAR(9),LEN(CELL("FILENAME",$A$1))-LEN(SUBSTITUTE(CELL("FILENAME",$A$1),"]",""))))) |
This file contains hidden or 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
| '1.オプション指定 | |
| Option Explicit | |
| '2.変数宣言 | |
| Dim fsObj | |
| Dim strFileName | |
| Dim strNewFileName | |
| Dim strParentFolderName | |
| Dim strBaseName | |
| Dim ext |
This file contains hidden or 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
| [gist https://gist.github.com/motoraku/761fde74e6e05ff91403 /] |
OlderNewer