PureBasic 5.40 LTS beta 10 is out !

Developed or developing a new product in PureBasic? Tell the world about it.
DontTalkToMe
Enthusiast
Enthusiast
Posts: 334
Joined: Mon Feb 04, 2013 5:28 pm

Re: PureBasic 5.40 LTS beta 1 is out !

Post by DontTalkToMe »

Keya wrote: So I too would prefer access to the "raw" numeric result - if I need to display it as hex that's easy to do myself. Just give me the buffer address, i know how many bits i need to read. Don't force the hex string on me, i usually don't need it in that processed format.
I agree, or even better they could add an helper function to do just that, to be called only if needed.
But it is probably overkill, you can do it by yourself.

A similar problem is there with Maps. The key must be a string.
Often the key is a number, and you have to convert it to use the Map functions.
User avatar
[blendman]
Enthusiast
Enthusiast
Posts: 297
Joined: Thu Apr 07, 2011 1:14 pm
Location: 3 arks
Contact:

Re: PureBasic 5.40 LTS beta 1 is out !

Post by [blendman] »

Thank you a lot for this great version ! The new VectorDrawing lib is amazing !
User_Russian
Addict
Addict
Posts: 1517
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

Re: PureBasic 5.40 LTS beta 1 is out !

Post by User_Russian »

Fred wrote:- Removed RemovePackFile()
Why did you remove this function?
How to delete files from the archive?
User avatar
kenmo
Addict
Addict
Posts: 2032
Joined: Tue Dec 23, 2003 3:54 am

Re: PureBasic 5.40 LTS beta 1 is out !

Post by kenmo »

Great change list!!!

I am excited for the Cipher/Compression improvements, UTF-8 additions, Vector drawing (custom written, or based on a public lib?), and more.

Thanks team! Testing it ASAP.
User avatar
Samuel
Enthusiast
Enthusiast
Posts: 755
Joined: Sun Jul 29, 2012 10:33 pm
Location: United States

Re: PureBasic 5.40 LTS beta 1 is out !

Post by Samuel »

Great work PB Team!!! :D
I'm looking forward to trying all these new features.
ozzie
Enthusiast
Enthusiast
Posts: 443
Joined: Sun Apr 06, 2008 12:54 pm
Location: Brisbane, Qld, Australia
Contact:

Re: PureBasic 5.40 LTS beta 1 is out !

Post by ozzie »

Samuel wrote:Great work PB Team!!! :D
I'm looking forward to trying all these new features.
+1!
thanos
Enthusiast
Enthusiast
Posts: 423
Joined: Sat Jan 12, 2008 3:25 pm
Location: Greece
Contact:

Re: PureBasic 5.40 LTS beta 1 is out !

Post by thanos »

Amazing!
As usual...
» myPersonal Banker :: Because you do not need to have a master degree in economics in order to organize your finances!
User avatar
electrochrisso
Addict
Addict
Posts: 989
Joined: Mon May 14, 2007 2:13 am
Location: Darling River

Re: PureBasic 5.40 LTS beta 1 is out !

Post by electrochrisso »

8) :) :D
PureBasic! Purely the best 8)
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Re: PureBasic 5.40 LTS beta 1 is out !

Post by Psychophanta »

Thanks!
Still , after multiple explanations, don't understand LTS version vs no LTS version :| :!:
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
Fred
Administrator
Administrator
Posts: 18153
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: PureBasic 5.40 LTS beta 1 is out !

Post by Fred »

Sit back, relax, and read this slowly and carefully: https://en.wikipedia.org/wiki/Long-term_support
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Re: PureBasic 5.40 LTS beta 1 is out !

Post by Psychophanta »

Will try again, thanks.
:?
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
Maitre_Kanter
User
User
Posts: 84
Joined: Mon Sep 06, 2010 3:05 pm

Re: PureBasic 5.40 LTS beta 1 is out !

Post by Maitre_Kanter »

Yeahhhhhhh !!!

Thank you and good job !

now, test in prgress

Arnaud
supercdfr
User
User
Posts: 54
Joined: Tue Mar 16, 2010 9:28 pm

Re: PureBasic 5.40 LTS beta 1 is out !

Post by supercdfr »

I always try the new import function, but with no luck.

I need this to work for one of my prgram :

Code: Select all

Global lpNetResource.NETRESOURCE

Import "MPR.lib"
  WNetAddConnection2A(t1.l,t2$,t3$,t4.l)  
EndImport

lpLocalName.s = "o:"
lpRemoteName.s = "\\10.90.56.2\c$"

lpNetResource\dwType       = #RESOURCETYPE_DISK
lpNetResource\lpLocalName  = @lpLocalName
lpNetResource\lpRemoteName = @lpRemoteName
lpNetResource\lpProvider = 0
  
Debug WNetAddConnection2A(lpNetResource, "pass", "administrateur", #True)
on 5.31, this work just fine :

Code: Select all

WNetAddConnection2_(lpNetResource, "pass", "administrateur", #True)
I try the /import mpr.lib, but i don't find any exe at the exit.

And is there a possiblity to add the /import command line in the GUI instead of havong to make a dos command line ?
User avatar
deseven
Enthusiast
Enthusiast
Posts: 367
Joined: Wed Jan 12, 2011 3:48 pm
Location: Serbia
Contact:

Re: PureBasic 5.40 LTS beta 1 is out !

Post by deseven »

@Fred

If we have curl now, can you also implement some curl options?

What can be really useful:
CURLOPT_USERAGENT
CURLOPT_POSTFIELDS
CURLOPT_HTTPHEADER
CURLOPT_TIMEOUT
CURLOPT_SSL_VERIFYPEER
CURLOPT_SSL_VERIFYHOST
akee
Enthusiast
Enthusiast
Posts: 496
Joined: Wed Aug 18, 2004 9:52 am
Location: Penang, Malaysia

Re: PureBasic 5.40 LTS beta 1 is out !

Post by akee »

Thanks a bunch!!! :D :D :D
Post Reply