comctl monthcalendar help

2006-12-23 Thread Vijay Kiran Kamuju
Hi, I am trying to fix visual bug in comctl monthcalendar control. When I am using the control spy v2.0 for comctl5.0, I can see that current date is highled with grey background on windows xp. (similar to when we click a day in the calendar) But on wine its not happening. I am trying to find

Re: d3d8: Don't report Shader Model 2.0 or higher

2006-12-23 Thread H. Verbeet
On 23/12/06, Chris Robinson [EMAIL PROTECTED] wrote: D3D8 never reports anything above SM 1.x. Does this fix something?

Re: d3d8: Don't report Shader Model 2.0 or higher

2006-12-23 Thread Stefan Dösinger
Am 23.12.2006 um 18:02 schrieb H. Verbeet: On 23/12/06, Chris Robinson [EMAIL PROTECTED] wrote: D3D8 never reports anything above SM 1.x. Does this fix something? It fixes Morrowind with glsl. This game seems to check for an exact number, not =

Re: comctl monthcalendar help

2006-12-23 Thread Duane Clark
Vijay Kiran Kamuju wrote: Hi, I am trying to fix visual bug in comctl monthcalendar control. When I am using the control spy v2.0 for comctl5.0, I can see that current date is highled with grey background on windows xp. (similar to when we click a day in the calendar) But on wine its not

Re: Building a full win32 winetest.exe

2006-12-23 Thread Paul Millar
Hi Paul, On Friday 22 December 2006 15:38, Paul Vriens wrote: any pointers how to build a winetest.exe I can run on Windows? Try make inside programs/winetest/ directory. However, winetest.exe has dependencies on all the DLL tests: to build the single winetest.exe executable, all the

Re: comctl monthcalendar help

2006-12-23 Thread Vijay Kiran Kamuju
Hi, I am trying to figure why its not highlighting the current date (It should be greyed), but its not. Well I am trying to figure out. I think somehow it indirectly sends the MCN_SELECT for the current date. We need to incorporate that in the ode calling default case. I need some help, which

Re: ntdll: Added stubs for the Rtl*GenericTable* functions

2006-12-23 Thread Vitaliy Margolen
Is there are any reason why do you need this functions at all? According to ddk they are part of Installable File System Drivers. This is a kernel level thing only and no user app should use these routines. Especially stabbing them won't do you any good if something actually using them. But that

Re: Building a full win32 winetest.exe

2006-12-23 Thread Louis Lenders
Paul Millar paulm at astro.gla.ac.uk writes: Try posting the problems with the crypt32 and hlink tests: it could be you need to patch you MinGW compiler to support extra functions. HTH, Paul. I too had problems trying to do make crosstest in crypt32 a time ago, this is what i get (link

Re: fonts:(followup)

2006-12-23 Thread Louis Lenders
Steven Edwards winehacker at gmail.com writes: Talk to the ReactOS guys and ask them if they still have it. I don't remeber if I ever committed it to ReactOS svn but if its there it would have been in reactos/media/fonts. Email them or ask on IRC if they can get you in touch with the

Re: user32: fix return value in DialogBoxParamA if no resource can befound + simple test

2006-12-23 Thread Dmitry Timoshkov
Louis. Lenders [EMAIL PROTECTED] wrote: --- a/dlls/user32/dialog.c +++ b/dlls/user32/dialog.c @@ -800,7 +800,12 @@ INT_PTR WINAPI DialogBoxParamA( HINSTANC HRSRC hrsrc; LPCDLGTEMPLATEA ptr; -if (!(hrsrc = FindResourceA( hInst, name, (LPSTR)RT_DIALOG ))) return 0; +if