Page 4 of 15
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Tue Sep 01, 2015 11:19 am
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.
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Tue Sep 01, 2015 12:54 pm
by [blendman]
Thank you a lot for this great version ! The new VectorDrawing lib is amazing !
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Tue Sep 01, 2015 2:40 pm
by User_Russian
Fred wrote:- Removed RemovePackFile()
Why did you remove this function?
How to delete files from the archive?
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Tue Sep 01, 2015 5:20 pm
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.
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Tue Sep 01, 2015 5:44 pm
by Samuel
Great work PB Team!!!
I'm looking forward to trying all these new features.
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Tue Sep 01, 2015 6:36 pm
by ozzie
Samuel wrote:Great work PB Team!!!
I'm looking forward to trying all these new features.
+1!
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Tue Sep 01, 2015 9:37 pm
by thanos
Amazing!
As usual...
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Wed Sep 02, 2015 1:31 am
by electrochrisso
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Wed Sep 02, 2015 9:39 am
by Psychophanta
Thanks!
Still , after multiple explanations, don't understand LTS version vs no LTS version

Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Wed Sep 02, 2015 9:44 am
by Fred
Sit back, relax, and read this slowly and carefully:
https://en.wikipedia.org/wiki/Long-term_support
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Wed Sep 02, 2015 10:14 am
by Psychophanta
Will try again, thanks.

Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Wed Sep 02, 2015 10:37 am
by Maitre_Kanter
Yeahhhhhhh !!!
Thank you and good job !
now, test in prgress
Arnaud
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Wed Sep 02, 2015 1:52 pm
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 ?
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Wed Sep 02, 2015 9:13 pm
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
Re: PureBasic 5.40 LTS beta 1 is out !
Posted: Thu Sep 03, 2015 7:34 am
by akee