梁皓雲 第八週上課 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 10月 26, 2020 第八週 第九週 第八週2020/10/26 國庫券T-Bill,Treasury Bills, 美國財政部Department of the Treasury, 台灣財政部Administry of Finance 國庫券面額$ 91 182 273 364 天期 貼現率 % 價格$ (計算中) 參考李顯儀金融市場page 4-12 第九週2020/11/03 期中考做影片 閱讀完整內容
第七週 2020/10/20 取得連結 Facebook X Pinterest 以電子郵件傳送 其他應用程式 10月 19, 2020 第七週網頁命令與VBA命令比較 網頁指令 VBA 輸入資料: 輸入資料: &1t;input type="text" id="a"> textbox 輸入數字: 輸入數字: &1t;input type="number" id="a"> checkbox <input onclick="alert('你他媽點三小')" type="button" value="欸" /> 輸入密碼 輸入密碼<input 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, ... 閱讀完整內容