var = InputBox ( Prompt, Title, Default, Xpos, Ypos) 使用如下: Sub multiTable() Dim name name = InputBox("enter you name please", "message enter", "zlian.zhou", 500, 500) Debug.Print name End Sub 各參數(shù)的含義如下 * var 接受用戶輸入的數(shù)據(jù) * Prompt InputBox框要顯示的提示信息 * Title InputBox框的標(biāo)題 * Default InputBox的默認(rèn)值 * Xpos InputBox框到屏幕左邊框的距離 * Ypos InputBox框到屏幕右邊框的距離 * 還有兩參數(shù),基本不會(huì)使用,就不說了,有興趣可以自己搜索 |
|