Tab Control???

Sportsboy
wollte Tab Control integrieren... aba ich hab kein plan wie ich das mache.
hat jmd nen tutorial oda so dazu, wie man tab control definiert etc?

hab jetzt nen fertigen code dafür gefunden.
allerdings weiß ich nicht, wie ich den einzelnen tabs felder hinzufügen...

hier mal nen kleiner ausschnitt aus dem code

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
LRESULT CALLBACK WindowFunc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
	{
		NMHDR *nmptr;
		int tabnumber;
		HDC hdc;
		char str[80];
		TCITEM tci;
		RECT WinDim;
		
		switch(message)
		{
			case WM_CREATE:
				GetClientRect(hwnd,&WinDim);	/* get size of parrent window	*/

				/* create a tab control		*/
				hTabWnd=CreateWindow(
					WC_TABCONTROL,
					"",
					WS_VISIBLE|WS_TABSTOP|WS_CHILD,
					0,0,WinDim.right,WinDim.bottom,
					hwnd,
					NULL,
					hInst,
					NULL);
				
				tci.mask=TCIF_TEXT;
				tci.iImage=-1;

				tci.pszText = "Fleetstärke";
				TabCtrl_InsertItem(hTabWnd,0,&tci);

				tci.pszText = "Two";
				TabCtrl_InsertItem(hTabWnd,1,&tci);

				tci.pszText = "Three";
				TabCtrl_InsertItem(hTabWnd,2,&tci);

				break;
			case WM_NOTIFY:		/* Process a tab change		*/
				nmptr=(LPNMHDR)lParam;
				if(nmptr->code == TCN_SELCHANGE)
				{
					tabnumber = TabCtrl_GetCurSel((HWND)nmptr->hwndFrom);
					hdc = GetDC(hTabWnd);
					sprintf(str,"Changed to Tab %d",tabnumber+1);
					SetBkColor(hdc,RGB(200,200,100));
					TextOut(hdc,40,100,str,strlen(str));
					ReleaseDC(hTabWnd,hdc);
				}
				break;
			case WM_DESTROY:	/* terminate the program	*/
				PostQuitMessage(0);
				break;
			default:
				/* let Windows prcess any messages not in this switch statement	*/
				return DefWindowProc(hwnd,message,wParam,lParam);
		}
		return 0;
	}



in zeile 45 wird ja festgelegt, dass nen text in dem tab erscheint.... aba wie kann ich da anstatt text z.b. combo-boxen oda so anzeigen lassen??


schon mal FETTES THX für jede Antwort!!