發表文章

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

第9週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 addn...

第七週進度

網頁 VBA 輸入金額: VBA 輸入金額:<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 豬<input type="radio" />狗<input type="radio" />貓<input type="radio" /> def 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("A...
第八週 第九週 第一週9月7日 在記事本編輯html 第二週9月14日 嵌入embed許閔為的網頁 許閔為 第三週9月21日  學習 input 還有表單 from 10 進化 16 進化 二進位     7 6 5 4 3 2 1 0     128 64 32 16 8 4 2 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 2 2 0 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 0 1 4 4 0 0 0 0 0 1 0 0 9 9 0 0 0 0 1 0 0 1 10 A 0 0 0 0 1 0 1 0 11 B 0 0 0 0 1 0 1 1 12 C 0 0 0 0 1 1 0 0 13 D 0 0 0 0 1 1 0 1 15 F 0 0 0 0 1 1 1 1 16 10 0 0 0 1 0 0 0 0 255 FF 1 1 1 1 1 1 1 1 第四週9月28日 下拉式選單的第j個數字當作速度0,1,2,3....... 第五週10月5日 + 第六週10月12日 網頁指令 VBA指令 聯絡人職稱: 董事長 總經理 副總經理 財務長 人資長 UserForm_Initialize()'起始表單事件設定 聯絡人職稱:<select id="ComboBox1"> <option>董事長</option> <option>總經理</option> <option>副總經理</option> <option>財務長</option> <option>人資長</option> </select> With ComboBox1 .Additem("董事長") .Additem("總經理") .Additem("副總經理") .Additem("財務長") .Additem("人資長") End With text textb...