Search found 5188 matches

by ts-soft
Fri May 20, 2005 3:35 pm
Forum: Announcement
Topic: PB2BB(TAG)
Replies: 15
Views: 3315

here can you download my upx-gui: http://de.geocities.com/ts_softde/SFX_UPX-GUI.zip
or in console: upx --best --compress-icons=1 pp2bbcode.exe
by ts-soft
Fri May 20, 2005 2:38 pm
Forum: Announcement
Topic: PB2BB(TAG)
Replies: 15
Views: 3315

is this a balloon exe with 1 MB of recycledata? :D
i have your exe packed with upx, 35.5 kb :mrgreen:
by ts-soft
Thu May 12, 2005 1:48 am
Forum: Announcement
Topic: XLTable, dll for easy reading
Replies: 10
Views: 5422

i have make a little wrapper userlib with TailBite 1.2 PR 1.0, you can download this (including source and example) at purearea.net in showcase
XLTable DLL Wrapper Lib v.1.0
by ts-soft
Wed May 11, 2005 3:48 am
Forum: Coding Questions
Topic: executing a string
Replies: 9
Views: 2098

Re: executing a string

roachofdeath wrote:how would i go about executing a string?

like

Code: Select all

Procedure blah(string$)
execute(string$)
EndProcedure
This is a Feature of some Interpreters (example XProfan 9), not in Compiling-Languages
by ts-soft
Thu Apr 28, 2005 5:40 pm
Forum: Off Topic
Topic: Can't login to german PB Forum
Replies: 14
Views: 3092

>> Does anybody have the same problem
yes, i can't login in german forum

PS: and i can't speak english :oops:
by ts-soft
Wed Apr 27, 2005 9:52 pm
Forum: Announcement
Topic: xMask - A Masked Edit Gadget
Replies: 48
Views: 28930

delete this lines: ; jaPBe Version=2.5.4.22 ; FoldLines=000000060008002E002F0037003C018F019001E401E503A603A703B103B203BC ; FoldLines=03BE0557055905620563057405880590059105A705A805C305C405E405E505F9 ; FoldLines=05FA060806090615061606220623062F063206480649065B065C0699 ; Build=0 ; CompileThis=Main.pb ;...
by ts-soft
Sun Apr 10, 2005 2:26 am
Forum: Off Topic
Topic: Realbasic v5.5 SE for free
Replies: 47
Views: 10632

Hey, PB, how do you enter a castle without the right key :wink:

the right key: http://www.realbasic.com/vb6/index.php?id=LRCHWRVH
by ts-soft
Wed Apr 06, 2005 11:08 pm
Forum: Off Topic
Topic: Realbasic v5.5 SE for free
Replies: 47
Views: 10632

all nice links:

falko
Kale
thefool
ts-soft

the last is the best :D
by ts-soft
Wed Apr 06, 2005 7:27 pm
Forum: Off Topic
Topic: Realbasic v5.5 SE for free
Replies: 47
Views: 10632

http://www.realbasic.com/vb6/index.php?id=LRCHWRVH


link was viruschecked with condom.dll Image
by ts-soft
Wed Apr 06, 2005 6:04 pm
Forum: Off Topic
Topic: Realbasic v5.5 SE for free
Replies: 47
Views: 10632

Realbasic you can get here at 15. April2005 for free. http://www.realbasic.com/vb6/index.php?id=YFFRNZFR Take no notice of that get it from here instead::twisted: :twisted: :twisted: http://www.realbasic.com/vb6/index.php?id=HGWMLKCP here ist a good link :mrgreen: http://www.realbasic.com/vb6/index...
by ts-soft
Tue Apr 05, 2005 3:25 pm
Forum: Announcement
Topic: New Libraries
Replies: 26
Views: 5476

Tommeh wrote:Can they not be put into zip files? :o
Installer for dummies, not for programmers
by ts-soft
Fri Apr 01, 2005 7:39 pm
Forum: Off Topic
Topic: Happy Birthday
Replies: 36
Views: 7276

Happy Birthday from Berlin Image
by ts-soft
Tue Feb 22, 2005 8:32 pm
Forum: Feature Requests and Wishlists
Topic: More simple math functions...
Replies: 19
Views: 5872

Code: Select all

Procedure AbsL(Value.l)
  If Value < 0 : Value = - Value : EndIf
  ProcedureReturn Value
EndProcedure