エクセルのVBAでは、
ユーザーと対話できるマクロを作成できます。
下のプログラムは、
ユーザーに身長を聞いて、それを表示しています。
=========================================
Sub sample()
Dim height as Single
height=InputBox(""身長を教えて下さい。"", ""身長の情報"")
MsgBox ""あなたの身長は "" & height & "" です。""
End Sub
=========================================
対話型メッセージは、
InputBoxを使用することで実現できます。
詳しくは動画をご覧ください。
エクセルマスター道場 閲覧よろしく
In Excel VBA,
You can create macros that can interact with the user.
The program below
Ask the user for their height and display it.
=========================================
Sub sample ()
Dim height as Single
height = InputBox ("" Please tell me your height. "", "" Height information "")
MsgBox "" Your height is "" & height & "". ""
End Sub
=========================================
Interactive messages are
This can be achieved by using the InputBox.
Please see the video for details.
Excel Master Dojo Thank you for browsing.
0 件のコメント:
コメントを投稿