程式設計學習進度心得
第一周
下載老師在youtube的影片下方的文字,然後先打開記事本貼上html的文字,之後建立bolgger網誌新增文章,修改老師事先打好的程式碼,複製045跟046的兩支影片連結,最後加上自己的座號跟姓名。
第二周
先打開自己的blogger然後打開上次編輯的文章,在<canvas height="310" id="canvas" width="1000"></canvas><br />後面新增<input type="button" value="不知道打甚麼(隨便打)" onclick="draw()">
<lable>紅色</lable><input type="radio"name="colorl">
<lable>綠色</lable><input type="radio"name="colorl">
<lable>藍色</lable><input type="radio"name="colorl"><br>
第三周
利用表單,傳輸指令到javascript
學習二進位與變數
ctx物件的字形font,後面接屬性properties方法method物件導向設計object-oriented
programming design
學習條件式
if(是不是豬頭)
{是豬頭,要進行的動作}
else
{不是豬頭,要進行的動作}
十進位 | 十進位 | 二進位 |
decimal | hexadecimal | binary |
0 | 0 | 0 |
1 | 1 | 1 |
2 | 2 | 10 |
3 | 3 | 11 |
8 | 8 | 1000 |
9 | 9 | 1001 |
10 | A | 1010 |
11 | B | 1011 |
12 | C | 1100 |
13 | D | 1101 |
14 | E | 1110 |
15 | F | 1111 |
16 | 10 | 10000 |
17 | 11 | 10001 |
253 | FD | 11111101 |
254 | FE | 11111110 |
255 | FF | 11111111 |
第四周
<form><b>
選擇速度: <select id="selection">
<option value="10">10</option>
<option value="20">20</option>
<option value="40" selected>40</option>
<option value="100">100</option>
<option value="100">500</option>
</select>
選擇顏色:
<input id="linecolor" type="checkbox">紅色 <!--核取方塊 linecolor -->
<input onclick="draw()" type="button" value="2020年每天通貨走勢" />
</form>
var speedvalue;
var speed = document.getElementById("s
speedvalue = speed.options[speed.option
網頁指令 | 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 |
commandbutton | |
<input onclick="alert('你是豬頭!')" type="button" value="按下我" /> | commandbutton |
豬狗貓 | commandbutton |
豬<input type="radio" />狗<input type="radio" />貓<input type="radio" /> | commandbutton |
豬狗貓 | commandbutton |
豬<input type="radio" name="a"/>狗<input type="radio" name="a"/>貓<input type="radio" name="a"/> | commandbutton |
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).Value = TextBox1.Text '統一編號 addnew.Offset(0, 1).Value = TextBox2.Text '公司 addnew.Offset(0, 2).Value = TextBox3.Text '聯絡人 addnew.Offset(0, 5).Value = TextBox4.Text '地址 addnew.Offset(0, 3).Value = ComboBox1.Value '聯絡人職位 使用下拉式選單 If OptionButton1 Then addnew.Offset(0, 4).Value = "男" If OptionButton2 Then addnew.Offset(0, 4).Value = "女" If OptionButton3 Then addnew.Offset(0, 4).Value = "跨性別" ListBox1.ColumnCount = 6 '在清單方塊 ListBox1 顯示輸入的資料,5 columns ListBox1.RowSource = "A1:F65536" End Sub Private Sub CommandButton2_Click() End End Sub Private Sub UserForm_Initialize() With ComboBox1 .AddItem ("董事長") .AddItem ("總經理") .AddItem ("副總經理") .AddItem ("財務長") .AddItem ("人資長") End With End Sub |
第七周網頁命令與VBA命令比較
網頁指令 | VBA |
輸入資料: | |
輸入資料:<input id="a" type="text" /> | |
輸入數字: | |
輸入數字:<input id="b" type="number" /> | |
<input onclick="alert('你好醜')" type="button" value="按鈕" /> | |
輸入密碼: | |
輸入密碼:<input id="c" type="password"/>> | |
是否吃素: | |
是否吃素:<input type="checkbox"/> | |
豬狗貓 | |
豬<input type="radio" />狗<input type="radio" />貓<input type="radio" /> | |
豬狗貓 | |
豬<input name="pet" type="radio" />狗<input name="pet" type="radio" />貓<input name="pet" type="radio" /> | |
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).Value = TextBox1.Text '統一編號 addnew.Offset(0, 1).Value = TextBox2.Text '公司 addnew.Offset(0, 2).Value = TextBox3.Text '聯絡人 addnew.Offset(0, 4).Value = TextBox4.Text '地址 addnew.Offset(0, 3).Value = ComboBox1.Value '聯絡人職位 使用下拉式選單 ListBox1.ColumnCount = 5 '在清單方塊 ListBox1 顯示輸入的資料,5 columns ListBox1.RowSource = "A1:E65536" End Sub Private Sub CommandButton2_Click() End End Sub Private Sub UserForm_Initialize() ComboBox1.AddItem ("董事長") ComboBox1.AddItem ("總經理") ComboBox1.AddItem ("副總經理") ComboBox1.AddItem ("財務長") End Sub |
留言
張貼留言