The MOST annoying thing about windows

For everything that's not in any way related to PureBasic. General chat etc...
SFSxOI
Addict
Addict
Posts: 2970
Joined: Sat Dec 31, 2005 5:24 pm
Location: Where ya would never look.....

Post by SFSxOI »

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.
Brice Manuel

Post by Brice Manuel »

The MOST annoying thing about windows
is that it is a bloated maggot-infested pile of crap!
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

SFSxOI wrote:
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 :D
Tipperton
Addict
Addict
Posts: 1286
Joined: Thu Jun 19, 2003 7:55 pm

Post by Tipperton »

Brice Manuel wrote:
The MOST annoying thing about windows
is that it is a bloated maggot-infested pile of crap!
That's definitely true for Windows Vista!

However, I do like Windows XP, for me it has proven to work well and is very stable. Windows 2000 wasn't bad either after service pack 1.
User avatar
Joakim Christiansen
Addict
Addict
Posts: 2452
Joined: Wed Dec 22, 2004 4:12 pm
Location: Norway
Contact:

Post by Joakim Christiansen »

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.
Derek
Addict
Addict
Posts: 2354
Joined: Wed Apr 07, 2004 12:51 am
Location: England

Post by Derek »

I agree, XP is finally working ok, now that it has been patched to hell and back!
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post by PB »

"Back by popular demand: Windows XP" -> http://tinyurl.com/2hc8en
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

thefool wrote:However i still don't get why they spent time on it :)
Because:
Image
User avatar
Kaeru Gaman
Addict
Addict
Posts: 4826
Joined: Sun Mar 19, 2006 1:57 pm
Location: Germany

Post by Kaeru Gaman »

dz dz dz....

Image
oh... and have a nice day.
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

Trond wrote:
thefool wrote:However i still don't get why they spent time on it :)
Because:
Image
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
Num3
PureBasic Expert
PureBasic Expert
Posts: 2812
Joined: Fri Apr 25, 2003 4:51 pm
Location: Portugal, Lisbon
Contact:

Post by Num3 »

LOL!

I programmed my own desktop listicon listmode changer in purebasic...

This is how my desktop looks :D
Image
Killswitch
Enthusiast
Enthusiast
Posts: 731
Joined: Wed Apr 21, 2004 7:12 pm

Post by Killswitch »

Wow! That looks pretty sweet Num3! Any chance of sharing that with the rest of us? :D
~I see one problem with your reasoning: the fact is thats not a chicken~
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

Is that supposed to be "clean"?

dzzz.........

Image
Num3
PureBasic Expert
PureBasic Expert
Posts: 2812
Joined: Fri Apr 25, 2003 4:51 pm
Location: Portugal, Lisbon
Contact:

Post by Num3 »

Killswitch wrote:Wow! That looks pretty sweet Num3! Any chance of sharing that with the rest of us? :D
One of the most complex codes i've ever seen....

:lol: :lol: :lol:

Code: Select all

; ---------------------------------------------------------
;
; 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 
Killswitch
Enthusiast
Enthusiast
Posts: 731
Joined: Wed Apr 21, 2004 7:12 pm

Post by Killswitch »

Oh :oops: I thought you'd coded all of the desktop information as well (CPU/Current track etc)!
~I see one problem with your reasoning: the fact is thats not a chicken~
Post Reply