Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

Wrong setting of LMDSIWindowsWindows7Up

In LMDSysIn, the following line is wrong:

LMDSIWindowsWindows7Up := (Win32MajorVersion >= 6) and (Win32MinorVersion >= 1);

Is the next Windows-Version will be MajorVersion = 7 and MinorVersion = 0 the setting will fail.

I've changed it to

LMDSIWindowsWindows7Up := ((Win32MajorVersion = 6) and (Win32MinorVersion >= 1)) or (Win32MajorVersion >= 7);

Tagged:

Comments

Sign In or Register to comment.