程式設計學習進度
第一週
貼現率 %
價格$(計算中)
1.下載老師寫好的程式碼進行修改
2.建立網址、新增網頁
第二週
學會使用輸入
<input onclick="draw()" type="button" value="文字" />
button鈕扣、按鈕
type可更改為radio,checkbox.......
第三周
利用表單 傳輸指令到Java script
學習二進位與變數
從excel(使用dec2hex與dec2bin命令) 直接貼上
十進位 | 十六進位 | 二進位 |
decimal | hexadecimal | binary |
0 | 0 | 0 |
1 | 1 | 1 |
2 | 2 | 10 |
3 | 3 | 11 |
4 | 4 | 100 |
5 | 5 | 101 |
6 | 6 | 110 |
7 | 7 | 111 |
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>
選擇速度: <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>
第六週上課
網頁指令 | 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 type="button" value="按"onclick="alert(‘豬頭’)" | 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命令比較
網頁指令 | VBA |
輸入資料: | textbox |
輸入資料:<input type="text" id="a"> | |
輸入數字: | |
輸入數字:<input type="number" id="b"> | |
<input onclick="alert('豬喔!')" type="button" value="點下" /> | |
輸入密碼: | |
輸入密碼:<input type="password" /> | |
是否正確: | checkbox |
是否正確:<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 |
第八周 | 第九周 |
第八周2020/10/27
國庫券T-Bill,Treasury Bills, 美國財政部Department of the Treasury, 台灣財政部Administry of Finance
國庫券面額$ 天期貼現率 %
價格$(計算中)
參考李顯儀金融市場page 4-12
留言
張貼留言