Re: Trackbar size fixes

2003-08-01 Thread BiGgUn
As BiGgUn suggests, in TRACKBAR_InitializeThumb, setting: infoPtr-uThumbLen = 21; In this case 21 is a magic number. In fact, infoPtr-uThumbLen equals SM_CYCAPTION. Stephan

thanks for all the help :)

2003-08-01 Thread Mike Hearn
Well, I made it. Our app no longer crashes, hangs, or blows its resource limits :) A slightly close shave with only 2 hours to go before I leave the company, but never mind. A big thanks to all the people who helped me, especially Ove, Mike, Robert, Greg, all the others and of course Alexandre.

[antony@antgel.co.uk: .msi files]

2003-08-01 Thread Antony Gelberg
Hi Wine developers, I posted this to the wine-users list but no joy. I was wondering if anyone could give me some advice? Does Windows Installer work? Sorry for posting here, but I have searched and searched and just can't find anything helpful on the subject. FYI - I'm using

Website Question

2003-08-01 Thread dd jj
Hello Everyone, Does anyone know a website listing all the Win32 API calls and their X window API equivalents or Unix command equivalents? Thank you Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software

winver

2003-08-01 Thread [EMAIL PROTECTED]
I've noticed that wine doesn't yet seem to have a winver option for windows server 2003, I suppose it a trivial thing to implement, at least by seeing how quickly this was done for windows xp.

Re: winver

2003-08-01 Thread Shachar Shemesh
[EMAIL PROTECTED] wrote: I've noticed that wine doesn't yet seem to have a winver option for windows server 2003, I suppose it a trivial thing to implement, at least by seeing how quickly this was done for windows xp. If anyone needs to run regression tests on Windows 2003 Server, I can lay

Re: winver

2003-08-01 Thread Vincent BĂ©ron
Le ven 01/08/2003 13:02, Shachar Shemesh a crit : [EMAIL PROTECTED] wrote: I've noticed that wine doesn't yet seem to have a winver option for windows server 2003, I suppose it a trivial thing to implement, at least by seeing how quickly this was done for windows xp. If anyone

Re: Trackbar size fixes

2003-08-01 Thread Duane Clark
BiGgUn wrote: As BiGgUn suggests, in TRACKBAR_InitializeThumb, setting: infoPtr-uThumbLen = 21; In this case 21 is a magic number. In fact, infoPtr-uThumbLen equals SM_CYCAPTION. From the Wine include file: winuser.h:#define SM_CYCAPTION 4 So I don't think we want to use that

Re: Trackbar size fixes

2003-08-01 Thread Jon Bright
Duane Clark wrote: From the Wine include file: winuser.h:#define SM_CYCAPTION 4 So I don't think we want to use that value. That's just the value for passing to GetSystemMetrics. The actual value returned will be either: sysMetrics[SM_CYCAPTION] = 20; or

Re: [antony@antgel.co.uk: .msi files]

2003-08-01 Thread Zsolt Rizsanyi
On Friday 01 August 2003 17.03, Antony Gelberg wrote: Hi Wine developers, I posted this to the wine-users list but no joy. I was wondering if anyone could give me some advice? Does Windows Installer work? If it only gives those messages then maybe the installer is already installed? Did

Re: [antony@antgel.co.uk: .msi files]

2003-08-01 Thread Robert Shearman
Date: Fri, 1 Aug 2003 16:03:01 +0100 From: Antony Gelberg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [EMAIL PROTECTED]: .msi files] Does Windows Installer work? Yes, I have installed MSN Messenger using it. I've tried installing bout the 98 and 2K versions under wine, but only get:

Re: Trackbar size fixes

2003-08-01 Thread Duane Clark
Jon Bright wrote: Duane Clark wrote: From the Wine include file: winuser.h:#define SM_CYCAPTION 4 So I don't think we want to use that value. That's just the value for passing to GetSystemMetrics. The actual value returned will be either: sysMetrics[SM_CYCAPTION] =

Re: [antony@antgel.co.uk: .msi files]

2003-08-01 Thread Antony Gelberg
On Fri, Aug 01, 2003 at 10:52:03PM +0100, Robert Shearman wrote: Date: Fri, 1 Aug 2003 16:03:01 +0100 From: Antony Gelberg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [EMAIL PROTECTED]: .msi files] Does Windows Installer work? Yes, I have installed MSN Messenger using it.

Re: Trackbar size fixes

2003-08-01 Thread Kelly Leahy
Hmm... well I wrote a small test case on Windows. For me on WinNT, GetSystemMetrics(SM_CYCAPTION) returns 19 (which is also what Wine returns for me), while the initial trackbar thumb size is 21. On Win2k, GetSystemMetrics(SM_CYCAPTION) returns 20, but the the initial thumb size is still 21.

Re: [antony@antgel.co.uk: .msi files]

2003-08-01 Thread Kelly Leahy
maybe you have an NT version of MSI installed? It seems to be trying to access the NT security APIs. Maybe the problem is that it may be testing for existence of these APIs by trying to call GetProcAddress on them. Wine's native DLLs are likely going to be a problem for any app that tends to do

Re: [antony@antgel.co.uk: .msi files]

2003-08-01 Thread Antony Gelberg
On Fri, Aug 01, 2003 at 08:21:52PM -0500, Kelly Leahy wrote: maybe you have an NT version of MSI installed? It seems to be trying to access the NT security APIs. Maybe the problem is that it may be testing for existence of these APIs by trying to call GetProcAddress on them. Wine's native

Re: [antony@antgel.co.uk: .msi files]

2003-08-01 Thread Gregory M. Turner
On Friday 01 August 2003 08:50 pm, Antony Gelberg wrote: I've also grepped the GetProcAddress calls at http://www.antgel.co.uk/compsci/linux/cm4_debug_GPA - don't know if that's any use. Based on this, I have a hunch: update to the latest cvs wine and you are good to go. I think the fix just

Re: [antony@antgel.co.uk: .msi files]

2003-08-01 Thread Antony Gelberg
On Fri, Aug 01, 2003 at 09:19:05PM -0500, Gregory M. Turner wrote: On Friday 01 August 2003 08:50 pm, Antony Gelberg wrote: I've also grepped the GetProcAddress calls at http://www.antgel.co.uk/compsci/linux/cm4_debug_GPA - don't know if that's any use. Based on this, I have a hunch: