Search found 54 matches

by MLK
Tue Oct 23, 2007 7:20 pm
Forum: The PureBasic Editor
Topic: Tool problem [PureBasic 4.10 beta 4]
Replies: 2
Views: 2546

Image
by MLK
Tue Oct 23, 2007 4:48 pm
Forum: The PureBasic Editor
Topic: Tool problem [PureBasic 4.10 beta 4]
Replies: 2
Views: 2546

Tool problem [PureBasic 4.10 beta 4]

test this as simple IDE tool:

Code: Select all

PB$ = OpenFileRequester("choose purebasic.exe", "", "", 0)
If PB$
    RunProgram(PB$, #DOUBLEQUOTE$ + GetPathPart(PB$) + "examples\sources\file.pb" + #DOUBLEQUOTE$, "")
EndIf
by MLK
Sun Aug 20, 2006 1:13 pm
Forum: Feature Requests and Wishlists
Topic: Automatic procedure-tracking
Replies: 9
Views: 2533

lets extend option explicit to declare/global! isn't that the solution?
by MLK
Sun Aug 20, 2006 1:55 am
Forum: Feature Requests and Wishlists
Topic: [Implemented] GadgetX/Y
Replies: 0
Views: 1272

[Implemented] GadgetX/Y

would be nice to have an optional parameter, to retrieve the total position of a gadet relating to the window, not relating to the container/splitter hosting it.
by MLK
Fri Aug 18, 2006 9:29 pm
Forum: General Discussion
Topic: Shannara, can you provide an example for these bugs plz?...
Replies: 9
Views: 3101

the network lib is incomplete, because of:
-no timeout for OpenNetworkConnection()
-no timeout for ReceiveNetworkData/File()
by MLK
Fri Aug 18, 2006 2:07 pm
Forum: Feature Requests and Wishlists
Topic: 2-pass compiling support
Replies: 23
Views: 5628

i would really like to see this feature implemented, as i would like to forget about declares and create my gadgets like:

Code: Select all

Global Gadget.l = ...Gadget(#PB_Any, ...)
by MLK
Thu Jul 13, 2006 11:29 am
Forum: Feature Requests and Wishlists
Topic: *buffer{#BYTES}
Replies: 3
Views: 1515

so you shouldnt like..

Code: Select all

GetTempPath_(255, @TempPath${255})
..too - but sorry, its already pure :wink:
by MLK
Thu Jul 13, 2006 12:10 am
Forum: Feature Requests and Wishlists
Topic: *buffer{#BYTES}
Replies: 3
Views: 1515

*buffer{#BYTES}

*buffer{...} instead of AllocateMemory(...) - just like string${...} instead of Space(...)

Code: Select all

ApiCall_(*buffer{1024})
by MLK
Thu Jun 01, 2006 1:45 pm
Forum: Feature Requests and Wishlists
Topic: MenuHeight()
Replies: 5
Views: 1795

MenuHeight()

shouldn't it be MenuHeight(#Menu) ?
by MLK
Wed May 31, 2006 1:33 pm
Forum: Feature Requests and Wishlists
Topic: Easy OOP features
Replies: 59
Views: 10652

as purebasic is a very nice language to start coding with, it would make sense to support OOP. i would really like to get as easy in contact with OOP as i got in contact with PP.
by MLK
Thu May 18, 2006 3:01 pm
Forum: Announcement
Topic: CS-Grid-Gadget: New Release V 2.3 / PB4
Replies: 66
Views: 44611

nice work!

.. but i cant use GetAsyncKeyState_() with any of the keys you are keyboardshortcutting (to window '0' ..^?^) because im not getting any #WM_KEYDOWN/UP.
by MLK
Wed Feb 22, 2006 4:13 pm
Forum: Tricks 'n' Tips
Topic: Select colors with / for ButtonImageGadget
Replies: 7
Views: 4132

and here is MLKs ColorButton for PB4


Procedure XOrColor(c1) ;by Deeem2031
c2 = 0:If c1&$FF < 128:c2 | $FF:EndIf:If (c1&$FF00)>>8 < 128:c2 | $FF00:EndIf:If (c1&$FF0000)>>16 < 128:c2 | $FF0000:EndIf
ProcedureReturn c2
EndProcedure

Procedure ChangeColorButton(Gadget.l, Color.l, Text ...
by MLK
Thu Feb 16, 2006 12:03 am
Forum: Feature Requests and Wishlists
Topic: PureBasic - really pure? For example: Str()-Function
Replies: 47
Views: 10359

would just be consistent!

tell a beginner why there is no StrL() *huh*!?
by MLK
Tue Feb 14, 2006 3:04 pm
Forum: Feature Requests and Wishlists
Topic: PureBasic - really pure? For example: Str()-Function
Replies: 47
Views: 10359

Fred wrote:Also the Str() function itself will be much bigger.
but there could be added a StrL() function and/or Str could become Str(val[,type]).
by MLK
Thu Feb 09, 2006 3:17 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 680254

great :D

i thought about doing that too, but decided to just wait for you ;-)