All PureFORM, JaPBe, Libs and useful code maintained by gnozal
Moderator: gnozal
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Wed Apr 05, 2006 7:50 am
Flype wrote: gnozal,
at home, it returns MS.PSDKSVR2003SP1.1033
Sorry for the typo, I meant '.1033'.
And, does it work now ?
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Wed Apr 05, 2006 7:54 am
Shannara wrote: Yeah, thats one of the things mentioned in the other thread concerning the beta. If you installed 3.94 first, then copy the beta over it, everything would work ... But it's not the recommended way by the team.
You don't have to install PB4.00 beta over PB3.94. Just launch the PB IDE one time and it should work (works for me).
Shannara wrote: I downloaded the newest version as of my post. Is there a newer version since my post?
All new versions are announced in this thread by 'Update'
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Wed Apr 05, 2006 11:33 am
Update
Changes :
- added IncludeBinary tool, to select a file to include (as file or data [optional compression]).
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
ts-soft
Always Here
Posts: 5756 Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany
Post
by ts-soft » Wed Apr 05, 2006 11:49 am
Nice idea
but why not compatible with PureBin2Data
your syntax:
Code: Select all
DataSection
PureBasicLogo_bmp_Start:
Data.l $1E84434A,$6D3C0000,$A9B8424F,$146920D0,$042548F1,$7D809410,$48070043,$2200A144,$D0082100,$699F9528,$800C44A1,$384BF229
; ...
Data.b $00,$80
PureBasicLogo_bmp_End:
EndDataSection
my syntax:
Code: Select all
DataSection
Data.l 7812 ; original filesize
Data.b 1 ; compressed with JCalg1
PureBasicLogo: ; startlabel
Data.l $1E84434A,$6D3C0000,$A9B8424F,$146920D0,$042548F1,$7D809410,$48070043,$2200A144,$D0082100,$699F9528,$800C44A1,$384BF229
; ...
Data.b $00,$80
PureBasicLogo_End:
EndDataSection
so can use with my lib and so on!
PureBasic 5.73 |
SpiderBasic 2.30 |
Windows 10 Pro (x64) |
Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Wed Apr 05, 2006 12:16 pm
but why not compatible with PureBin2Data
What is important to use your lib ?
Would it be enough if I add this :
Code: Select all
Data.l 7812 ; original filesize
Data.b 1 ; compressed with JCalg1
before the label ?
Another question : if it is not compressed, it should be like this ?
Code: Select all
Data.l 7812 ; original filesize
Data.b 0 ; NOT compressed
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
Flype
Addict
Posts: 1542 Joined: Tue Jul 22, 2003 5:02 pm
Location: In a long distant galaxy
Post
by Flype » Wed Apr 05, 2006 12:29 pm
gnozal wrote: Flype wrote: gnozal,
at home, it returns MS.PSDKSVR2003SP1.1033
Sorry for the typo, I meant '.1033'.
And, does it work now ?
Yes gnozal, it works perfectly now
Not tested with msdn option, but sdk is ok for me.
By the way, where can i find the msdn version ?
And the includebinary tool is cool too
Thank you for your great support.
No programming language is perfect. There is not even a single best language.
There are only languages well suited or perhaps poorly suited for particular purposes. Herbert Mayer
ts-soft
Always Here
Posts: 5756 Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany
Post
by ts-soft » Wed Apr 05, 2006 12:31 pm
gnozal wrote: but why not compatible with PureBin2Data
What is important to use your lib ?
Would it be enough if I add this :
Code: Select all
Data.l 7812 ; original filesize
Data.b 1 ; compressed with JCalg1
before the label ?
Yes
gnozal wrote:
Another question : if it is not compressed, it should be like this ?
Code: Select all
Data.l 7812 ; original filesize
Data.b 0 ; NOT compressed
Yes
and 2 for BriefLZ.
over 2 for you
PureBasic 5.73 |
SpiderBasic 2.30 |
Windows 10 Pro (x64) |
Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Wed Apr 05, 2006 12:38 pm
Flype wrote: Yes gnozal, it works perfectly now
Not tested with msdn option, but sdk is ok for me.
By the way, where can i find the msdn version ?
Great !
I am still using Win32.hlp, the MSDN thing was a request. I don't know more.
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Wed Apr 05, 2006 1:21 pm
Update
Changes :
- the IncludeBinary tool can now also generate a PureBin2Data compatible DataSection
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
ts-soft
Always Here
Posts: 5756 Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany
Post
by ts-soft » Wed Apr 05, 2006 1:33 pm
thx
PureBasic 5.73 |
SpiderBasic 2.30 |
Windows 10 Pro (x64) |
Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Thu Apr 06, 2006 4:11 pm
Update
Changes :
- added quick help panel (shortcuts, manual markers, etc...), adapted from remi_meier's CHM file. Maybe he will update his jaPBe help file
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
remi_meier
Enthusiast
Posts: 468 Joined: Sat Dec 20, 2003 6:19 pm
Location: Switzerland
Post
by remi_meier » Thu Apr 06, 2006 4:19 pm
gnozal wrote: Maybe he will update his jaPBe help file
Sorry, I have other things to do, but I could (if I find them again) upload
the help files for anyone who wants to update them.
Athlon64 3700+, 1024MB Ram, Radeon X1600
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Fri Apr 07, 2006 8:32 am
Update
Almost final version.
Changes :
- some fixes in QuickHelp panel
- updated help file (included in download)
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
gnozal
PureBasic Expert
Posts: 4229 Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:
Post
by gnozal » Tue Apr 11, 2006 11:09 am
jaPBe 3.6.4 release candidate
Changes :
- some fixes
- added shortcut for Project Options [F8]
- added TreeGadget to select preferences tab
- added 'Debugger' preferences tab : allows to modify debugger options from jaPBe
- it is better TM
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).