Page 3 of 3
Re: Droopy's Lib 1.32 x86/x64!
Posted: Fri Dec 18, 2009 1:29 am
by SFSxOI
Thank you very much

Re: Droopy's Lib 1.32 x86/x64!
Posted: Thu Jun 10, 2010 1:26 am
by DoubleDutch
Any chance of a version for V4.5?

Re: Droopy's Lib 1.32 x86/x64!
Posted: Thu Jun 10, 2010 3:18 am
by lexvictory
I'll start looking into it after next tuesday, I have exam study up until then
Re: Droopy's Lib 1.32 x86/x64!
Posted: Thu Jun 10, 2010 11:43 pm
by DoubleDutch
np, thanks.

Re: Droopy's Lib 1.32 x86/x64!
Posted: Sat Jun 19, 2010 10:39 am
by KIKI
This version doesn't work with PB 4.50. is it plan an new version ? Thanks
Re: Droopy's Lib 1.32 x86/x64!
Posted: Sat Jun 19, 2010 3:40 pm
by lexvictory
See my previous post.
I have not yet had time to try yet.
Try tailbiting it yourself if you have it (or feel like installing it) - if TB doesn't work with 4.50 i'll have to update/fix TB first.
If it works, I can probably squeeze Droopy's Lib in sooner, as i won't have to test so much first.
There shouldn't be any code changes needed
I will endeavour to start tomorrow (GMT+8), though no guarantees.
Re: Droopy's Lib 1.32 x86/x64!
Posted: Sat Jun 19, 2010 10:35 pm
by DoubleDutch
No rush for me, it's both Fathers Day AND my birthday tomorrow - so I think I'll have my feet up with a nice cup of tea!

Re: Droopy's Lib 1.32 x86/x64!
Posted: Fri Jul 23, 2010 7:55 am
by lexvictory
Sorry for the long delay, time kept getting away from me - I was on uni break after all!
Compiled a version for 4.50
It SEEMS to work with 4.51rc1 (haven't tested much of it), but you need to copy version.lib from \PureLibraries\Windows\Libraries\ from a previous version at the moment, as 4.51rc1 does not seem to have this lib file
Re: Droopy's Lib 1.32 x86/x64!
Posted: Mon Jul 26, 2010 6:07 am
by electrochrisso
Hi Lexvictory, I have found a little memory error bug in bargraph.
Source Code Line 4693
StartDrawing(ImageOutput(BargraphLList()))
Should be
StartDrawing(ImageOutput(BargraphLList()\Image))
Great lib, keep up the good work.
Re: Droopy's Lib 1.32 x86/x64!
Posted: Sun Apr 03, 2011 12:38 pm
by oakvalley
I really love this library, thanks droopy!
I do have a small suggestion for the GetDirectoryEntrySize()
-----------------------------------------------------------
It feeds back size in KB. Should really been just bytes. Let people decide afterwards if they want to / 1024.
So:
Size+( lpFindFileData\nFileSizeLow / 1024) ; Add Low DWord
Should be:
Size+( lpFindFileData\nFileSizeLow) ; Add Low DWord
Gives back size as bytes.
No problem, as one can just copy the code out of droopy.pb and modify ourselves, but just a thought
