發表文章

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

第八週

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

程式設計學習進度與心得

圖片
 9月7日 老師 示範 ,學生改 <h1 onclick="alert('歡迎觀賞老師製作的教學影片')">劉任昌教學影片</h1 onclick> <!--onclick按一下滑鼠--> 9月14日 <input type="button"value="2020每天通貨走勢"onclick="draw()"> <label>顏色:</label> <label>黑色<input type="radio" name="color"></label> <label>紅色<input type="radio" name="color"></label> <label>藍色<input type="radio" name="color"></label> <label>綠色<input type="radio" name="color"></label> <br> 9月21日 在HTML處增加 <form><b>選擇顏色: <input id="linecolor" type="checkbox">紅色 <input onclick="draw()" type="button" value="2020年每天通貨走勢" /> </form> 在JavaScript處作如下更改 ctx.fillStyle="black"; if ( document.getElementById('l inecolor').checked ) ctx.fillStyle="red"; 位元組與變數 ...