Page 2 of 2

Posted: Sat Feb 11, 2006 8:47 am
by netmaestro
Please note that I didn't test the file encryption commands, just the text encryption commands.

Posted: Sat Feb 11, 2006 9:00 am
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!

Posted: Sun Feb 26, 2006 9:25 pm
by ts-soft
PBOSL_TryCatch updated, thx to Remi_Meier

textcryption and textencryption removed, RFile Lib removed.

Examples and Help updated.

Posted: Sun Feb 26, 2006 10:41 pm
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.

Posted: Sun Feb 26, 2006 10:57 pm
by ts-soft
@Gansta93
we still wait for tailbite for pb4.

Posted: Sun Feb 26, 2006 11:02 pm
by Gansta93
El_choni told me it was downloadable on purearea but he told me there were still bugs he was traking too.

Posted: Sun Feb 26, 2006 11:20 pm
by ts-soft
Version = 1.3 PR 0.1
is not stable, so we wait.

Posted: Mon Feb 27, 2006 12:36 am
by El_Choni
A bunch of bugs have been fixed, but it's not still stable, sorry,

Posted: Wed Mar 01, 2006 6:25 am
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?

Posted: Wed Mar 01, 2006 8:05 am
by ts-soft
MSXML3 will be available with the next version of tailbite, i hope.

Posted: Sat Mar 04, 2006 12:54 am
by Shannara
Cools. Im just checking to see how the ScreenGadgets library coming along, or is it coming down the pipe eventually?

Posted: Wed May 03, 2006 6:28 pm
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 :!: