0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[vba vbs cmd tool] 【超便利ツール】Excelの所在ディレクトリ、ファイル名を簡単に表示させ、Copy及び開く

Last updated at Posted at 2020-01-17

簡単な手順

1.手動にて下記のようにイメージでフレームを作っておく。

image.png

2.サンプルコード

Private Sub CommandButton1_Click()
    Call SetTextToClipboard(TextBox1.Text)'※
End Sub

Private Sub CommandButton2_Click()
    Call SetTextToClipboard(TextBox2.Text)'※
End Sub

Private Sub CommandButton3_Click()
    Call ExecuteCMD("cmd /c explorer " & TextBox1.Text)'※
End Sub

Private Sub UserForm_Initialize()
    TextBox1 = ActiveWorkbook.path
    TextBox2 = ActiveWorkbook.Name
End Sub

※参照先

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?