Search found 7 matches

by Booster698
Fri Dec 29, 2006 4:52 pm
Forum: Feature Requests and Wishlists
Topic: pickle for PureBasic
Replies: 5
Views: 3310

Effectively if could be nice to handle this.
by Booster698
Sun Dec 24, 2006 1:32 pm
Forum: PureFORM & JaPBe
Topic: PureFORM 1.99 (yet another FORM designer)
Replies: 1537
Views: 588317

Found a small bug in the font requester:

Create a ButtonGadget
Select it
Go to gadget properties window in extra tab
Open the font requester
Click OK (no selection)
Enable the font

The font is incorrectly initialised (Empty string or 0 value)
This work but can cause font problems (ex: with flag ...
by Booster698
Fri Aug 04, 2006 12:20 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] Projects in the IDE
Replies: 6
Views: 2015

+1

It would be great :)
by Booster698
Wed May 10, 2006 9:27 pm
Forum: Announcement
Topic: PureBasic 4.00 for Windows
Replies: 80
Views: 33660

Thanks to all the beta testers, Fred and the PB Team

Great work :)
by Booster698
Sat May 06, 2006 3:22 pm
Forum: Announcement
Topic: Scramble remake
Replies: 23
Views: 11313

Cool game thanx for your work 8)
by Booster698
Thu Apr 20, 2006 11:53 pm
Forum: Feature Requests and Wishlists
Topic: UnLeft() and UnRight() Command
Replies: 6
Views: 2003

Thanx i've already coded my own but i just give an idea to improve purebasic :)

Code: Select all

Procedure.s UnLeft(String.s, Length)
  ProcedureReturn Left(String, Len(String) - Length)
EndProcedure

Procedure.s UnRight(String.s, Length)
  ProcedureReturn Right(String, Len(String) - Length)
EndProcedure
by Booster698
Thu Apr 20, 2006 11:21 pm
Forum: Feature Requests and Wishlists
Topic: UnLeft() and UnRight() Command
Replies: 6
Views: 2003

UnLeft() and UnRight() Command

It could be usefull to have these commands for strings manipulations :

Example:


Result.s = UnLeft("GoodBye" , 3) ; Result will be "Good"
Result.s = UnRight("GoodBye" , 4) ; Result will be "Bye"


It can produce a better method than :


Result.s = Left(Result, Len(Result) - 3)


Would be nice ...