thefool wrote:However i still don't get why they spent time on it
Ohhh...I know the answer to this one...pick me...pick me....
I remember in the XP beta that exact same question was asked (was that you?), anyway..the answer was...It was originally part of something larger that did not make it into the OS and was popular with the less computer savvy during marketing tests, So...it got left in.
thefool wrote:However i still don't get why they spent time on it
I remember in the XP beta that exact same question was asked (was that you?), anyway..the answer was...It was originally part of something larger that did not make it into the OS and was popular with the less computer savvy during marketing tests, So...it got left in.
Ah hehe
Peh. So some noobs liked it and smack here we go annoy the rest of us. Sounds like business
Windows XP is a very ok operating system, Vista too gets better when tweaking it a little (removing services you don't need, turning off indexing, etc).
I like logic, hence I dislike humans but love computers.
thefool wrote:However i still don't get why they spent time on it
Because:
That just shows a stupid user :p
True, some people can't clean. But this is a shortcut remover, and it does not touch normal files. As far as i can see, 98% of that is not shortcuts
; ---------------------------------------------------------
;
; Win32 - Change viewmode of desktop icons
; Original Code by Thorsten Will (Mr.Vain of Secretly! in 2006)
; Revised by num3, so it works with Desktop Stickie programs
; Like Rainlender
; ---------------------------------------------------------
#LVM_FIRST = $1000
#LVM_SetView = #LVM_FIRST + 142
#LV_View_List = 2
#LVA_ALIGNLEFT = $1
#LVA_ALIGNTOP = $2
#LVA_DEFAULT = $0
#LVA_SNAPTOGRID = $5
Procedure GetDesktopListViewHandle()
hwd = FindWindow_("ProgMan", 0) ; Find the windows desktop parent window
Result = GetWindow_ (hwd, #GW_CHILD ) ; Get it's handle
s$ = Space(255)
GetClassName_(Result, @s$, Len(s$)); Get class name
s$=Trim(LCase(s$))
again:
If s$ = LCase("SHELLDLL_DefView") ; is it the List view class ?
Result = GetWindow_ (Result, #GW_CHILD)
s$ = Space(255)
GetClassName_(Result, @s$, Len(s$));
Else
Result = GetWindow_ (Result, #GW_HWNDNEXT) ; Hack for child windows
s$ = Space(255)
GetClassName_(Result, @s$, Len(s$)); ; Get another class name
s$=Trim(LCase(s$))
Delay(10)
Goto again
EndIf
ProcedureReturn Result
;
EndProcedure
If SendMessage_(GetDesktopListViewHandle(), #LVM_SetView,#LV_View_List, 0)
End
Else
MessageRequester("Error","System Malfunction! LOL")
End
EndIf