PureBasic 3.92 for Windows is out !

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
Rings
Moderator
Moderator
Posts: 1435
Joined: Sat Apr 26, 2003 1:11 am

Post by Rings »

OnError Library Correction (using in DLL's) is not in history ,
just to remember hard bughunting ;)
SPAMINATOR NR.1
sec
Enthusiast
Enthusiast
Posts: 792
Joined: Sat Aug 09, 2003 3:13 am
Location: 90-61-92 // EU or ASIA
Contact:

Post by sec »

Great news!
Rings: Have huge thanks if onError works on GNU/Linux :twisted:
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Re: PureBasic 3.92 for Windows is out !

Post by thefool »

Thanks :D
you even hold the promise to realease it monday :P
Fred wrote: Have fun !
You bet :D
Thomas
Enthusiast
Enthusiast
Posts: 112
Joined: Sat Apr 26, 2003 8:45 pm

Post by Thomas »

The full version is 6.28 MB and the update is 6.98 MB. Did I miss something?

I downloaded the update since there seems to be more neat stuff in the package :).
 
Thomas
Enthusiast
Enthusiast
Posts: 112
Joined: Sat Apr 26, 2003 8:45 pm

Post by Thomas »

Installed the update over PB 3.91 and Help didn't work any more. :?

Downloaded the full version and Help works allright.
 
Henrik
Enthusiast
Enthusiast
Posts: 404
Joined: Sat Apr 26, 2003 5:08 pm
Location: Denmark

Post by Henrik »

Thanks Fred & Team :D
Fred
Administrator
Administrator
Posts: 18162
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

A new version if online, you can use SmartUpdate or get the update/full package again. SwapElements() is present now and the IDE should find again the help file when launched from everywhere.
Randy Walker
Addict
Addict
Posts: 989
Joined: Sun Jul 25, 2004 4:21 pm
Location: USoA

Post by Randy Walker »

Hey... I couldn't say it better myself so I'm quoting the dictionary:

Excellent

\Ex"cel*lent\, a. [F. excellent, L. excellens, -entis, p. pr. of excellere. See Excel.] 1. Excelling; surpassing others in some good quality or the sum of qualities

Thanks Fred :D
- - - - - - - - - - - - - - - -
Randy
I *never* claimed to be a programmer.
Mowen
User
User
Posts: 48
Joined: Tue Oct 07, 2003 1:04 pm
Location: Belgium

Post by Mowen »

I noticed the call to the Visual Designer from the PB editor menu does not work anymore (path not found). I installed the full package 3.92 by having uninstalled the previous version.

SwapElements works now. Thx. :)
PureBasic: one of the best programming tools ever ! PB is light, easy, crossplatform, powerfull, fast, extendable, enjoyable and... tasty ;-)
Mowen
User
User
Posts: 48
Joined: Tue Oct 07, 2003 1:04 pm
Location: Belgium

Post by Mowen »

Mowen wrote:I noticed the call to the Visual Designer from the PB editor menu does not work anymore (path not found). I installed the full package 3.92 by having uninstalled the previous version.

SwapElements works now. Thx. :)

It is just a shortcut problem. It is because the "Start in" is not specified. It should be "C:\Program Files\PureBasic". Update the PB shortcut (or create a new one) and then the call to the Visual Designer in the interface will work.
PureBasic: one of the best programming tools ever ! PB is light, easy, crossplatform, powerfull, fast, extendable, enjoyable and... tasty ;-)
Hi-Toro
Enthusiast
Enthusiast
Posts: 269
Joined: Sat Apr 26, 2003 3:23 pm

Post by Hi-Toro »

Thanks for the update Fred!
James Boyd
http://www.hi-toro.com/
Death to the Pixies!
Ziltch
User
User
Posts: 59
Joined: Sun Aug 03, 2003 12:05 am
Location: Australia

Post by Ziltch »

Thank you, for more great features! :D
dontmailme
Enthusiast
Enthusiast
Posts: 537
Joined: Wed Oct 29, 2003 10:35 am

Post by dontmailme »

Thanks for the Calendargadget update....

but you didn't define #PB_calendar_bold !

I guessed it's 1 anyway ;)

It works nicely!

:D
Paid up PB User !
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

Post by freak »

Um yes, the PureBasic.res was probably not included in the SmartUpdate
(or not even the full one !?)

Anyway, it is 1 for bold and 0 for normal.
quidquid Latine dictum sit altum videtur
Randy Walker
Addict
Addict
Posts: 989
Joined: Sun Jul 25, 2004 4:21 pm
Location: USoA

Post by Randy Walker »

Thanks again Fred and associates :) I'm really liking PureBasic!!

One thing. I didn't see any mention of memory leaks with arrays here in the forum. Only leaks with linked lists. The following code had a big memory leak problem in version 3.91 but ver 3.92 fixed it so thanks again. Excellent! :wink:

Code: Select all

HWND = OpenWindow(0, 220, 164, 400, 14, #PB_Window_ScreenCentered | $2400000 , "Watch Memory and Keep Pressing [Enter].    ~    Use [Esc] to quit.")
If HWND
  If CreateGadgetList(WindowID())
  EndIf
EndIf
    
Procedure Villan() ; LOAD SIMULATED DATA INTO ARRAYS
  Dim test_1dim$(0)     ; This should clear test_1dim ???
  Dim test_2dim$(0,0)   ; This should clear test_2dim ???
  Dim test_1dim$(2000)
  Dim test_2dim$(2000,50)
  ;
  For a = 0 To 1000
    For b = 0 To 50
      ;stuff each 2 dimensional element with dummy string.
      test_2dim$(a,b) = "neword" + Str(b)
      ;append s$ to hold full set of "b" elements.
      s$ = s$ + test_2dim$(a,b)
    Next b
    ;stuff each 1 dimensional element with "b" set from above.
    test_1dim$(a) = s$
    s$ = ""
  Next a
  Beep_(200,100) ; just to verify execution
EndProcedure

Repeat
  _mess = WaitWindowEvent()
  
  If _mess = #WM_KEYDOWN
    Select EventwParam()
      Case #VK_RETURN
        Villan()
      Case #VK_ESCAPE
        _mess = #PB_Event_CloseWindow
    EndSelect
  EndIf
Until _mess = #PB_Event_CloseWindow 
- - - - - - - - - - - - - - - -
Randy
I *never* claimed to be a programmer.
Post Reply