Skip to content

Instantly share code, notes, and snippets.

View bg1bgst333's full-sized avatar
😐

B.G bg1bgst333

😐
View GitHub Profile
@bg1bgst333
bg1bgst333 / FileDialog.cpp
Created December 4, 2025 12:06
CFileDialog::GetFileExt
// ヘッダのインクルード
// 既定のヘッダ
#include <string.h> // C文字列処理
#include <shlwapi.h> // シェルAPI
// 独自のヘッダ
extern "C" { // C言語として解釈する.
#include "string_utility_cstring.h" // 文字列ユーティリティ(C文字列処理)
}
#include "FileDialog.h" // CFileDialog
@bg1bgst333
bg1bgst333 / ComboBox.cpp
Created December 2, 2025 01:53
CComboBox::SetCurSel
// ヘッダのインクルード
// 独自のヘッダ
#include "ComboBox.h" // CComboBox
// コンストラクタCComboBox
CComboBox::CComboBox() : CCustomControl() {
}
// デストラクタ~CComboBox
@bg1bgst333
bg1bgst333 / ComboBox.cpp
Created December 1, 2025 01:35
CComboBox::GetCurSel
// ヘッダのインクルード
// 独自のヘッダ
#include "ComboBox.h" // CComboBox
// コンストラクタCComboBox
CComboBox::CComboBox() : CCustomControl() {
}
// デストラクタ~CComboBox
@bg1bgst333
bg1bgst333 / ComboBox.cpp
Created November 30, 2025 04:35
CComboBox::AddString
// ヘッダのインクルード
// 独自のヘッダ
#include "ComboBox.h" // CComboBox
// コンストラクタCComboBox
CComboBox::CComboBox() : CCustomControl() {
}
// デストラクタ~CComboBox
@bg1bgst333
bg1bgst333 / ComboBox.cpp
Last active November 28, 2025 02:38
CComboBox::Create
// ヘッダのインクルード
// 独自のヘッダ
#include "ComboBox.h" // CComboBox
// コンストラクタCComboBox
CComboBox::CComboBox() : CCustomControl() {
}
// デストラクタ~CComboBox
@bg1bgst333
bg1bgst333 / ComboBox.cpp
Created November 27, 2025 03:27
CComboBox
// ヘッダのインクルード
// 独自のヘッダ
#include "ComboBox.h" // CComboBox
// コンストラクタCComboBox
CComboBox::CComboBox() : CCustomControl() {
}
// デストラクタ~CComboBox
@bg1bgst333
bg1bgst333 / CComboBoxDlg.cpp
Created November 24, 2025 23:39
CComboBox::SetCurSel
// CComboBoxDlg.cpp : 実装ファイル
//
#include "stdafx.h"
#include "CComboBox.h"
#include "CComboBoxDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
@bg1bgst333
bg1bgst333 / CComboBoxDlg.cpp
Created November 24, 2025 02:58
CComboBox::GetCurSel
// CComboBoxDlg.cpp : 実装ファイル
//
#include "stdafx.h"
#include "CComboBox.h"
#include "CComboBoxDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
@bg1bgst333
bg1bgst333 / CComboBoxDlg.cpp
Created November 22, 2025 01:25
CComboBox::AddString
// CComboBoxDlg.cpp : 実装ファイル
//
#include "stdafx.h"
#include "CComboBox.h"
#include "CComboBoxDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
@bg1bgst333
bg1bgst333 / MainWindow.cpp
Created November 21, 2025 01:43
CMultiViewItem::Destroy
// ヘッダのインクルード
// 既定のヘッダ
#include <windows.h> // 標準WindowsAPI
#include <stdio.h> // C標準入出力
#include <commctrl.h> // コモンコントロール
// 独自のヘッダ
#include "MainWindow.h" // CMainWindow
#include "FileDialog.h" // CFileDialog
#include "CustomEdit.h" // CCustomEdit
#include "resource.h"