TCHAR greeting[] = _T("103.331");
TCHAR greeting2[] = _T(".");
LPCTSTR greeting3[] = _T("100.331");
case WM_PAINT:
{
// 描画処理の開始
hdc = BeginPaint(hWnd, &ps);
// 文字列の出力。「Hello, World!」と出力する。
TextOut(hdc, 5, 5, greeting, _tcslen(greeting));
// ペイント処理の終了
EndPaint(hWnd, &ps);
}
break;