程式設計學習進度
第八週 | 第九週 |
第一週九月七日
在記事本上編輯html
第二週九月十四日
嵌入embed同學的網頁 林育芳
第三週九月二十一日
學習 input 還有表單 form
位元組與變數
第四週九月二十八日
迴圈從0開始到達 speed 下拉式選單的結構{ 0, 10, 20, 40, 100, 500 }
下拉式選單的第j個數字 當作數度 0, 1, 2,3,..........
讓i從21變成 money.length 陣列的長度,避免SetIntetrval在執行
第五週十月五日
第六週上課
網頁指令 | 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 | textbox |
button | commandbutton |
第七週2020/10/19
網頁 | VBA |
輸入金額: | textbox |
輸入金額:<input id="a" type="text" /> | VBA |
VBA | |
<input type="button" value="按下我" onclick="alert('你是豬頭!')"> | VBA |
豬狗貓 | VBA |
豬<input type="radio" />狗<input type="radio" />貓<input type="radio"> | VBA |
豬狗貓 | VBA |
豬<input name="pet" type="radio" />狗<input name="pet" type="radio" />貓<input name="pet" type="radio" | 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("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/26
國庫券面額$ 天期貼現率 %
價格$(計算中)
參考李顯儀金融市場page 4-12
寫得很完整,很好!期中考參考 https://youtu.be/09QGpayrxro
回覆刪除