Windows Longhorn build 4059

6.0.4059.0.main.031208-1842
Build of Windows Longhorn
OS familyWindows NT
Version number6.0
Build number4059
Build revision0
Architecturex86
Build labmain
Compiled on2003-12-08

Windows Longhorn build 4059 is a build of Windows Longhorn. A reference of this build was found in the WindowsListView.cs file, located within the reference source code for the .NET 4.5.1 version of Windows Presentation Foundation. It mentions that builds after 4059 always display the view header regardless of the view mode being used in Explorer. This is consistent with the behaviour shown in later builds of Longhorn.

The full build tag was mentioned by a user of the MSFN forums on 27 May 2007.[1]

WindowsListView.cs[edit | edit source]

            // Current LH builds (4059) display the header even in tile view, 
            // which makes us think we are in details view. 
            // Explicitly detect tile view and return false. 
                if (view == NativeMethods.LV_VIEW_TILE)
                {
                    return false;
                }

                if (InReportView(hwnd) || (view == NativeMethods.LV_VIEW_DETAILS))
                {
                    return true;
                }

References[edit | edit source]