[WinApi] Problem z ComboBoxem
Ostatnio zmodyfikowano 2014-03-25 22:39
maciek3540 Temat założony przez niniejszego użytkownika |
[WinApi] Problem z ComboBoxem » 2014-03-25 17:30:55 Siemanko ! kod : HWND hComboBox = CreateWindowEx( WS_EX_CLIENTEDGE, "COMBOBOX", NULL, WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST, 5, 155, 150, 300, hwnd, NULL, hInstance, NULL ); SendMessage( hComboBox, CB_ADDSTRING, 0,( LPARAM ) "1" ); SendMessage( hComboBox, CB_ADDSTRING, 0,( LPARAM ) "2" ); int index = ComboBox_GetCurSel( hComboBox ); int dlugoscCB = ComboBox_GetTextLength( hComboBox ); LPSTR TextComboBox =( LPSTR ) GlobalAlloc( GPTR, dlugoscCB + 1 ); ComboBox_GetText( hComboBox, TextComboBox, dlugoscCB + 1 ); error : |60|error: 'ComboBox_GetCurSel' was not declared in this scope| |61|error: 'ComboBox_GetTextLength' was not declared in this scope| |63|error: 'ComboBox_GetText' was not declared in this scope| ||=== Build failed: 3 error(s), 1 warning(s) (0 minute(s), 1 second(s)) ===| kod jest ze strony : http://cpp0x.pl/kursy/Kurs-WinAPI-C++/Podstawy/Kontrolki/178w kursie jest napisane, że takie linijki trzeba dodać, żeby odczytać dane z wyboru z ComboBoxa, ale mi właśnie takie błędy wywala ;( Mogę prosić o pomoc ? |
|
maly |
» 2014-03-25 17:41:09 |
|
maciek3540 Temat założony przez niniejszego użytkownika |
» 2014-03-25 22:39:24 O dzięki już działa ! Zamykam temat Pozdrawiam |
|
« 1 » |