PBOSL4 Alpha 1 for PureBasic 4.0 Beta
- netmaestro
- PureBasic Bullfrog
- Posts: 8451
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
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
thx again,netmaestro wrote:Please note that I didn't test the file encryption commands, just the text encryption commands.
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

PBOSL_TryCatch updated, thx to Remi_Meier
textcryption and textencryption removed, RFile Lib removed.
Examples and Help updated.
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

A strange thing : now to use TB_DebugError(), we must do.
The lib NTService can be compiled without problem on PB V4, GlobalHotkeys and Win9xService too if using my way to use TB_DebugError().
Cheers.
Code: Select all
Msg$="Error durring the command."
TB_DebugError(@Msg$)
Cheers.
@Gansta93
we still wait for tailbite for pb4.
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Version = 1.3 PR 0.1
is not stable, so we wait.
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Hi,ts-soft wrote:MSXML3 will be available with the next version of tailbite, i hope.
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
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
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!!!
benny!
-
pe0ple ar3 str4nge!!!