Droopy Lib updated (1.31)

Developed or developing a new product in PureBasic? Tell the world about it.
Intrigued
Enthusiast
Enthusiast
Posts: 501
Joined: Thu Jun 02, 2005 3:55 am
Location: U.S.A.

Post by Intrigued »

Thanks for the updates! I ran into a problem upon install of the latest version, please advise.

Here is a link to the dialog (error, incompatability):

http://putfile.com/pic.php?pic=1/217343349.gif&s=x11
Intrigued - Registered PureBasic, lifetime updates user
User avatar
Droopy
Enthusiast
Enthusiast
Posts: 658
Joined: Thu Sep 16, 2004 9:50 pm
Location: France
Contact:

Post by Droopy »

The 'ErrorBox' function exist in two userlibrairies.

You must delete the Droopy Lib or the RequesterPlus Lib. :oops:

Sorry.

I tried to rename this function in the next release :wink:
( And the InfoBox too )
User avatar
GeoTrail
Addict
Addict
Posts: 2794
Joined: Fri Feb 13, 2004 12:45 am
Location: Bergen, Norway
Contact:

Post by GeoTrail »

Excellent as always Droopy :) :D
I Stepped On A Cornflake!!! Now I'm A Cereal Killer!
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post by lexvictory »

Intrigued wrote:Thanks for the updates! I ran into a problem upon install of the latest version, please advise.

Here is a link to the dialog (error, incompatability):

http://putfile.com/pic.php?pic=1/217343349.gif&s=x11
another solution (temporary):
delete 'droopy' from pb directory\PureLibraries\UserLibraries
download tailbite (if u dont already hav it) - if tailbite doesnt put itself in the tools menu, u have to add it ureself, commandline: the tailbite exe (i cant remember its name....), arguments: "%FILE" MAKE SURE U PUT %FILE IN QUOTATION MARKS (" ")
open droopy source code
rename the conflicting functions
save
compile with tailbite
should work....




and by the way, errorbox() is my function.... :oops: :oops: :oops:
Last edited by lexvictory on Wed Jan 04, 2006 9:14 am, edited 1 time in total.
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post by lexvictory »

website now updated to version 1.31
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
Intrigued
Enthusiast
Enthusiast
Posts: 501
Joined: Thu Jun 02, 2005 3:55 am
Location: U.S.A.

Post by Intrigued »

Thanks for sharing and helping guys!
Intrigued - Registered PureBasic, lifetime updates user
User avatar
Falko
Enthusiast
Enthusiast
Posts: 271
Joined: Sat Oct 04, 2003 12:57 pm
Location: Germany
Contact:

Post by Falko »

@Droopy

A Tip from ts-soft.
He has posted in german forum this corrected two
functions from your lib.

Sorry, i can not all this translate for you, but you can see
the orignal-Source and the Tip by ts-soft.

http://forums.purebasic.com/german/view ... 1198#71167

Falko
User avatar
Droopy
Enthusiast
Enthusiast
Posts: 658
Joined: Thu Sep 16, 2004 9:50 pm
Location: France
Contact:

Post by Droopy »

Thans a lot Falko, i look @ this :D
User avatar
Droopy
Enthusiast
Enthusiast
Posts: 658
Joined: Thu Sep 16, 2004 9:50 pm
Location: France
Contact:

Post by Droopy »

ts-soft find & fix bugs.

Code: Select all

Procedure.s GetEnvironmentVariable(Name.s) 

  Length = GetEnvironmentVariable_(Name, Buffer.s, 0) 
  If Length 
    Buffer = Space(Length) 
    GetEnvironmentVariable_(Name, Buffer, Length) 
    ProcedureReturn Buffer 
  EndIf 
  
EndProcedure

Code: Select all

Procedure MakeSureDirectoryPathExists(Directory.s) 
  
  ; Return 1 If success / 0 If fail 
  
  If Right(Directory,1)<>"\" : Directory+"\" : EndIf
  
  MakeSureDirectoryPathExists_(Directory)
  
  If FileSize(Directory)=-2
    ProcedureReturn #True
  EndIf
  
EndProcedure
Thanks to him :D
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post by lexvictory »

Please read, some of it is very important!!


ive been doing some major work on the site for droopy's lib, there are some major major changes in the design..... (but it only works in internet explorer... sorry, im still trying to work on getting it all working - its the dropdowns and other browsers.... - and it they dont display in firefox at all! :shock: )

anyway, among these improvements, (i hope u like them) there has also been a change in the server it is on: it is now at: <old link> - now the site has no ads!!! :D :twisted: :wink: :lol: (i may release a help file that has the site url fixed)

the site still needs some work done, the scripts that let u contact me or droopy dont work.. (well the ones that are on the server dont - im almost finished the scripts that most likely will work :wink: )

anyway, i hope you enjoy the new site (and the fact that there are no more ads on it :lol:)

if anybody wishes to translate the site and/or the help file into another language, email me or private message me, im especially looking for people willing to translate into german, french (droopy doesnt have time), spanish, and possibly even dutch. some others couldnt hurt... :lol: :wink:

if anyone wishes to donate server space (with php support and possibly an sql database) that would be greatly appreciated, cos at the moment, im still looking for an sql database...


(and looking back on it, this has to be my biggest post on this forum....!! :lol: :lol: :twisted: )
Last edited by lexvictory on Thu Sep 28, 2006 9:34 am, edited 1 time in total.
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
User avatar
Droopy
Enthusiast
Enthusiast
Posts: 658
Joined: Thu Sep 16, 2004 9:50 pm
Location: France
Contact:

Post by Droopy »

Nice :wink:
gnozal
PureBasic Expert
PureBasic Expert
Posts: 4229
Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:

Post by gnozal »

lexvictory wrote:ive been doing some major work on the site for droopy's lib, there are some major major changes in the design..... (but it only works in internet explorer... sorry, im still trying to work on getting it all working - its the dropdowns and other browsers.... - and it they dont display in firefox at all! :shock: )
The dropdown menus don't work with Opera either.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post by lexvictory »

yeah, i know they dont work with opera - i test it with opera aswell - and i did say that at the moment the menus only work with iexplorer , and i am trying to fix this.... does anybody use netscape and have any problems?

the site is very dynamic (php) so it should be easy to change the position of the menus for the different browsers........


does anyone know where i can get a free mysql account to use? (cos believe it or not, the site is on a free webserver...)
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Post by lexvictory »

site is now fixed so that internet explorer users get a dropdown menu version and any other browser gets a non-dropdown menu version

and even if u use opera with it pretending to be IE, u will still get the non ie version :lol: :lol: :D :P :twisted:

now what im looking for is a smtp server on the net or a server that lets me use the php mail() function....
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
Tranquil
Addict
Addict
Posts: 952
Joined: Mon Apr 28, 2003 2:22 pm
Location: Europe

Post by Tranquil »

Thanks for the lib!! very, very nice work.

Yesterday i took a closer look on it and I noticed the following problem:

If I use GetExtensionIcon() with extension like "html","xml","css" and so on. I do not get the browsers Icon or the correct icon which is assigned to one of this filetypes. why? Explorer shows the correct icon assigned to this files.
Maybe there is something wrong? Other filetypes (.doc etc) works like a charm!

Anyway.... good work! and keep it up! :D

Greetings

Mike
Tranquil
Post Reply