VB的InputBox函式的引數依次是prompt、 title、default、 xpos、ypos、 helpfile和context。除prompt引數是必需的,其它幾個都是可選的。
說明
如果同時提供了 helpfile 與 context,使用者可以按 F1 來檢視與 context
函式返回文字框中的內容。如果使用者單擊 Cancel,則此函式返回一個長度為零的字串 ("")。
注意 如果還要指定第一個命名引數以外的引數,則必須在表示式中使用 InputBox。如果要省略某些位置引數,則必須加入相應的逗號分界符。
InputBox 函式示例
本示例說明使用 InputBox 函式來顯示使用者輸入資料的不同用法。如果省略 x 及 y
Dim Message, Title, Default, MyValue
Message = "Enter a value between 1 and 3" " 設定提示資訊。
Title = "InputBox Demo" " 設定標題。
Default = "1" " 設定預設值。
" 顯示資訊、標題及預設值。
MyValue = InputBox(Message, Title, Default)
MyValue = InputBox(Message, Title, , , , "DEMO.HLP", 10)
" 在 100, 100 的位置顯示對話方塊。
MyValue = InputBox(Message, Title, Default, 100, 100)
VB的InputBox函式的引數依次是prompt、 title、default、 xpos、ypos、 helpfile和context。除prompt引數是必需的,其它幾個都是可選的。
說明
如果同時提供了 helpfile 與 context,使用者可以按 F1 來檢視與 context
函式返回文字框中的內容。如果使用者單擊 Cancel,則此函式返回一個長度為零的字串 ("")。
注意 如果還要指定第一個命名引數以外的引數,則必須在表示式中使用 InputBox。如果要省略某些位置引數,則必須加入相應的逗號分界符。
InputBox 函式示例
本示例說明使用 InputBox 函式來顯示使用者輸入資料的不同用法。如果省略 x 及 y
Dim Message, Title, Default, MyValue
Message = "Enter a value between 1 and 3" " 設定提示資訊。
Title = "InputBox Demo" " 設定標題。
Default = "1" " 設定預設值。
" 顯示資訊、標題及預設值。
MyValue = InputBox(Message, Title, Default)
MyValue = InputBox(Message, Title, , , , "DEMO.HLP", 10)
" 在 100, 100 的位置顯示對話方塊。
MyValue = InputBox(Message, Title, Default, 100, 100)