發表文章

第八週

第七週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 ad...

第七週

第七週2020/10/19 html vba 輸入國庫券面額: vba 輸入國庫券面額: <input id="a" type="text" /> textbox commandbutton &It;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 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...

徐鈺雯學習程式設計進度

圖片
第一週九月七日 老師給範本 學生改,如此學習。 第二週九月十四日 學習 <input type="button" value="2020年每天的貨幣數量" onclick="draw()" > 第三週九月二十一日 學習input還有表單form 在HTML處增加。 <form><b>選擇顏色: <input id="linecolor" type="checkbox">紅色 <input onclick="draw()" type="button" value="2020年每天通貨走勢" /> </form> 在JavaScript處作如下更改。 ctx.fillStyle="black"; if ( document.getElementById('linecolor').checked ) ctx.fillStyle="red"; 位元組與變數 10 進位 16 進位 位元組 Byte 數的 2 進位表示 2 進位對應的 10 進位 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 ...