軟體:
MicroSoft Office
版本:
??
抱歉不知道怎麼搜尋解答 所以就來打擾大家了
我在工作表中放置一個按鈕
按下去後執行userform1.show
在userform1中 有20個 textbox
我希望在userform1.show之前
把userform1的20個textbox 依序預設為 A1~A20的值
並且把textbox反白
selstart = 0
sellength =len(textbox1.value)
=====================================
Question 1
userform1.textbox1.value = range("A1").value
userform2.textbox2.value = range("A2")....
我需要寫20次 且要逐一更改textbox的1 ,2 3 ...
請問可以用變數寫?
Question 2
textbox1.selstart =0
textbox1.sellength = len(textbox1.value)
我以前會這樣寫... 請問len中的textbox1.value有別的函數可以取代嗎
或者選取(反白)有更簡單的寫法 ?
3Q