000
22.11.2004, 23:42 Uhr
xXx
Devil
|
Ich hab folgendes Problem, ich hab mir in dem PSDK mal angeguckt wie man nen Tab Control erstellt, aber ich hab den Code leicht verändert aber er funzt nicht, selbst die Originalform von Microsoft funzt nicht hier mal der Code:
C++: |
HWND WINAPI DoCreateTabControl(HWND hwndParent) { RECT rcClient; HWND hwndTab; TCITEM tie; int i; i= 1;
GetClientRect(hwndParent, &rcClient); InitCommonControls(); hwndTab = CreateWindow( WC_TABCONTROL, "", WS_CHILD | WS_CLIPSIBLINGS | WS_VISIBLE, 0, 0, rcClient.right, rcClient.bottom, hwndParent, NULL, g_hinst, NULL ); if (hwndTab == NULL) return NULL;
tie.mask= TCIF_TEXT; tie.iImage = -1; tie.pszText ="Texturen"; TabCtrl_InsertItem(hwndTab, 0,&tie); tie.pszText ="Modelle"; TabCtrl_InsertItem(hwndTab, 1, &tie);
return hwndTab; }
|
Includiert hab ich folgendes:
C++: |
#include <windows.h> #include "resource.h" #include <commctrl.h> #include <tchar.h>
|
Und darauf meldet der folgende Fehlermeldung obwohl doch eigentlich alles Richtig ist!
Zitat von Verfasser: |
LevelED.obj : error LNK2001: unresolved external symbol __imp__InitCommonControls@0 Debug/LevelED.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe.
|
|