PBOSL4 Alpha 1 for PureBasic 4.0 Beta

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
netmaestro
PureBasic Bullfrog
PureBasic Bullfrog
Posts: 8451
Joined: Wed Jul 06, 2005 5:42 am
Location: Fort Nelson, BC, Canada

Post by netmaestro »

Please note that I didn't test the file encryption commands, just the text encryption commands.
Last edited by netmaestro on Tue Feb 21, 2006 2:41 pm, edited 3 times in total.
BERESHEIT
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Post by ts-soft »

netmaestro wrote:Please note that I didn't test the file encryption commands, just the text encryption commands.
thx again,
i see no changing on text, strange bug!
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.
Image
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Post by ts-soft »

PBOSL_TryCatch updated, thx to Remi_Meier

textcryption and textencryption removed, RFile Lib removed.

Examples and Help updated.
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.
Image
Gansta93
Enthusiast
Enthusiast
Posts: 238
Joined: Wed Oct 20, 2004 7:16 pm
Location: The Village
Contact:

Post by Gansta93 »

A strange thing : now to use TB_DebugError(), we must do.

Code: Select all

Msg$="Error durring the command."
TB_DebugError(@Msg$)
The lib NTService can be compiled without problem on PB V4, GlobalHotkeys and Win9xService too if using my way to use TB_DebugError().

Cheers.
Be seeing you! :-)

Gansta93
If you speak french, you can visite Le Monde de Gansta93 (Gansta93's World)
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Post by ts-soft »

@Gansta93
we still wait for tailbite for pb4.
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.
Image
Gansta93
Enthusiast
Enthusiast
Posts: 238
Joined: Wed Oct 20, 2004 7:16 pm
Location: The Village
Contact:

Post by Gansta93 »

El_choni told me it was downloadable on purearea but he told me there were still bugs he was traking too.
Be seeing you! :-)

Gansta93
If you speak french, you can visite Le Monde de Gansta93 (Gansta93's World)
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Post by ts-soft »

Version = 1.3 PR 0.1
is not stable, so we wait.
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.
Image
El_Choni
TailBite Expert
TailBite Expert
Posts: 1007
Joined: Fri Apr 25, 2003 6:09 pm
Location: Spain

Post by El_Choni »

A bunch of bugs have been fixed, but it's not still stable, sorry,
El_Choni
mskuma
Enthusiast
Enthusiast
Posts: 573
Joined: Sat Dec 03, 2005 1:31 am
Location: Australia

Post by mskuma »

Thanks ts-soft for your excellent effort with PBOSL & commitment to making it available to PB4. I see here that MSXML3 is desired - I am looking forward to MSXML3 also - any chance it might be coming soon?
User avatar
ts-soft
Always Here
Always Here
Posts: 5756
Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany

Post by ts-soft »

MSXML3 will be available with the next version of tailbite, i hope.
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.
Image
Shannara
Addict
Addict
Posts: 1808
Joined: Thu Oct 30, 2003 11:19 pm
Location: Emerald Cove, Unformed

Post by Shannara »

Cools. Im just checking to see how the ScreenGadgets library coming along, or is it coming down the pipe eventually?
benny
Enthusiast
Enthusiast
Posts: 465
Joined: Fri Apr 25, 2003 7:44 pm
Location: end of www
Contact:

Post by benny »

ts-soft wrote:MSXML3 will be available with the next version of tailbite, i hope.
Hi,

since I couldn't wait and it is opensource I tried to convert the MSXML3-code
to PB4.0. Doesn't seem to be a big deal - actually no changes needed except
the following tiny ones (maybe Kiffi can check it if my changes are correct) :

(Some return values of procedures aren't correct (concerning its type). Seems
that PB3.94 doesn't care about but PB4.0 does)


Line 586

Incorrect return type (required is long)

Code: Select all

If hResult <> #S_OK : ProcedureReturn "" : EndIf
changed to

Code: Select all

If hResult <> #S_OK : ProcedureReturn #True : EndIf

Line 1682 , 1682

Some error.

Code: Select all

  If XMLDOMNode = 0     : ProcedureReturn "" : EndIf
If sAttributeName = "" : ProcedureReturn "" : EndIf
changed to :

Code: Select all

If XMLDOMNode = 0     : ProcedureReturn #False : EndIf
If sAttributeName = "" : ProcedureReturn #False : EndIf

The examples seems to work ok, so I hope the above changes are ok.
Original codes and examples can be found at the official PBOSL-Site :

http://pbosl.purearea.net/



EDIT:

I forgot to mention, that if you want to use the original and modified sources
as an include file (not as a lib) - use MSXML3_Init() at the beginning
of your code :!:
regards,
benny!
-
pe0ple ar3 str4nge!!!
Post Reply