第七週 2020/10/19 網頁 VBA 輸入金額: textbox 輸入金額:<input id="a" type="text" /> VBA VBA <input id="b" type="button" value="點擊" onclick="alert('你是豬頭!')"/> VBA 豬 狗 貓 VBA 豬<input type="radio">狗<input type="radio">貓<input type="radio" > VBA 豬 狗 貓 VBA 豬<input type="radio" name="pet">狗<input type="radio" name="pet">貓<input type="radio" name="pet"> VBA 豬 狗 貓 def EXCEL VBA Private Sub CommandButton1_Click() '註解click事件,在網頁onclick Dim addnew As Range '定義 變數 addnew 是工作表的一個範圍 If Range("A1").CurrentRegion.Rows.Count = 1 Then Set addnew = Sheets("DataTable").Range("A1").Offset(1, 0) Else Set addnew = Sheets("DataTable").Range("A1").End(xlDown).Offset(1,...
很好,繼續讓自己的能力壯大。
回覆刪除