1 2 3 4 5 6
|
void Buttons::send_button(HWND hWnd) {
CreateWindow(L"Button", L"Choose File", WS_VISIBLE | WS_CHILD, 53, 315, 150, 35, hWnd, NULL, NULL, NULL);
CreateWindow(L"Button", L"Upload", WS_VISIBLE | WS_CHILD, 208, 315, 65, 35, hWnd, NULL, NULL, NULL);
}
|