2022-12-01から1ヶ月間の記事一覧
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer) If CloseMode = vbFormControlMenu Then MsgBox "[閉じる]ボタンを使用してください" Cancel = True End If End Sub ネタ元 www.moug.net
=INDIRECT(A2&"!D12")てな感じ ネタ元 www.forguncy.com
Dim start_date, end_date, yyyymmdd yyyymmdd = Format(Now, "yyyy/mm/dd") start_date = CDate(yyyymmdd + " " + UserForm_RetryInfo.TextBox_Start) end_date = CDate(yyyymmdd + " " + UserForm_RetryInfo.TextBox_End) ネタ元 daitaideit.com
// 数値ならTRUE BOOL isNumeric(CString& str) { char* p; strtof(str.GetBuffer(0), &p); return *p == 0; } ネタ元 programming-place.net
pip で OpenCV のインストール必要 qiita.com pip install opencv-python pip install opencv-contrib-pythonopenh264のDLLが必要。 #ライブラリのインポート import cv2 #VideoCaptureオブジェクトを取得 cap = cv2.VideoCapture('tmp.avi') #動画のプロパ…
インストール $ pip install yfinance --upgrade --no-cache-dir サンプル import yfinance as yf #ダウのヒストリカル取得 stock_price = yf.download("^DJI", start="2000-1-3", end="2099-12-31") # CSVで出力 stock_price.to_csv(aOutPath) ネタ元 datat…
英字だけのフォルダで実行したら解決した