2022-12-01から1ヶ月間の記事一覧

VBA フォームの[×]ボタンで閉じられなくする

Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer) If CloseMode = vbFormControlMenu Then MsgBox "[閉じる]ボタンを使用してください" Cancel = True End If End Sub ネタ元 www.moug.net

Excel セルの値指定で他のシートの内容を取得するにはINDIRECT()

=INDIRECT(A2&"!D12")てな感じ ネタ元 www.forguncy.com

VBA 時間部分はテキストで指定するけど、日付はNow()から取る

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

MFC 文字列が数値かどうかチェック

// 数値ならTRUE BOOL isNumeric(CString& str) { char* p; strtof(str.GetBuffer(0), &p); return *p == 0; } ネタ元 programming-place.net

pythonで aviからmp4変換(h.264)

pip で OpenCV のインストール必要 qiita.com pip install opencv-python pip install opencv-contrib-pythonopenh264のDLLが必要。 #ライブラリのインポート import cv2 #VideoCaptureオブジェクトを取得 cap = cv2.VideoCapture('tmp.avi') #動画のプロパ…

python yfinance でのデータ取得

インストール $ 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…

pyinstallerでEndUpdateResourceWがなんたらとエラーがでる場合日本語パスが影響してるかも

英字だけのフォルダで実行したら解決した