hi,whoevers is good in window programming.can u ppl help me out for this problem.thanks very much.that is where i can work on to? u can see my coding,
here is my problem,how to write an application to display"welcome" in a different stock fonts?
and one thing,what is stock fonts? plss.....i shall be here for urs answers.thanks

#include<windows.h>
#include"resource.h"
long FAR PASCAL WndProc(HWND ,UINT, WPARAM,LPARAM);

int PASCAL WinMain(HANDLE hInst,HANDLE hPrevInstance,LPSTR lpszCmdLine,int nCmdShow)
{
HWND hWnd;
MSG msg;
WNDCLASS wndclass;

hInstance=hInst;

if(!hPrevInstance)
{
wndclass.style=0;
wndclass.lpfnWndProc=(WNDPROC)WndProc;
wndclass.cbClsExtra=0;
wndclass.cbWndExtra=0;
wndclass.hInstance=hInst;
wndclass.hIcon=LoadIcon(hInst,IDI_APPLICATION);
wndclass.hCursor=LoadCursor(NULL,IDC_ARROW);
wndclass.hbrBackground=GetStockObject(WHITE_BRUSH) ;
wndclass.lpszMenuName=MAKEINTRESOURCE(IDR_MENU1);
wndclass.lpszClassName="MyClass";
if(!RegisterClass(&wndclass))
return 0;
}
hWnd=CreateWindow("MyClass","Student Pre-App Form",WS_OVERLAPPEDWINDOW,10,10,300,300,NULL,NULL, hInst,NULL);
ShowWindow(hWnd,nCmdShow);

while(GetMessage(&msg,0,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return(msg.wParam);
}

long FAR PASCAL WndProc(HWND hWnd ,UNIT wMessage, wParam,LPARAM lParam)

{