0

Access VBA では、 Applicationという単語に続けてピリオドを入力し、その後に必要なものを入力することで、実行中のアプリケーションのプロパティ/メソッドにアクセスできます。

たとえば、次のように FileDialog をインスタンス化して表示できます。

Dim openFileDialogue As Object
Set openFileDialogue = Application.FileDialog(3)
openFileDialogue.Show

これを Visio VBA で実行したい場合、上記のコードでApplicationを何に置き換える必要がありますか?

ありがとう

4

1 に答える 1

1

Try this link: http://visguy.com/vgforum/index.php?topic=738.0

At the very bottom is a code sample from "Nikolay" that shows an alternative way of getting the Fi It shows an alternative (though more complex) way of getting the File Dialog to show up in Visio

于 2012-12-05T01:32:57.770 に答える