Can anybody give me any tips on how to give a form a drop shadow? Like on the dropdown portion of a combo box.
I use vfp9 and xp.
From the internet I thought this might work in the form init, but it doesn't seem to...
Thanks in advance.
I use vfp9 and xp.
From the internet I thought this might work in the form init, but it doesn't seem to...
Code:
#DEFINE GCL_STYLE 00000803
#DEFINE CS_DROPSHADOW 0x00020000
DECLARE INTEGER SetClassLong IN win32api;
INTEGER HWND, INTEGER nIndex, LONG dwNewLong
SetClassLong(Thisform.HWnd,GCL_STYLE,CS_DROPSHADOW)
Thanks in advance.