發表文章

目前顯示的是 10月, 2020的文章

第九週2020/10/26沈育萍

第七週2020/10/19 html vba 輸入國庫券面額: vba 輸入國庫券面額: <input type="text" id="a"> textbox commandbutton <input onclick="alert('你是大帥哥!')" type="button" value="按下我" /> vba 豬 狗 貓 鼠 vba 豬<input type="radio" />狗<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"/>鼠<input type="radio" name="pet"/> vba 董事長 總經理 財務長 vba <select><option>董事長</option><option>總經理</option><option>財務長</option></select> vba EXCEL VBA Private Sub CommandButton1_Click() Dim addnew As Range '定義 變數 addnew 是工作表的一個範圍 If Range("A1").CurrentRegion.Rows.Count = 1 Then Set add

第七週程式設計學習進度

網頁 VBA 輸入金額: textbox 輸入金額:<input type="text" id="a"> button <input type="button" value="別懷疑按下去" onclick="alert('super')"> pig dog cat 複選radio pig<input type="radio">dog<input type="radio">cat<input type="複選radio"> pig dog cat 單選raido pig<input type="radio" name="pet">dog<input type="radio" name="pet">cat<input type="radio" name="pet"> hello world EXCEL VBA Private Sub CommandButton1_Click() 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, 0) End If addnew.Offset(0, 0).Va