Search found 91 matches

by SCRJ
Mon Jan 11, 2010 1:38 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 689683

Re: jaPBe 3.9.12 [IDE for PB 4.xx]

oh :|
Thank you.
by SCRJ
Sun Jan 10, 2010 2:45 pm
Forum: PureFORM & JaPBe
Topic: jaPBe 3.13.4 [IDE for PB 4 and PB 5]
Replies: 1545
Views: 689683

Re: jaPBe 3.9.12 [IDE for PB 4.xx]

Hi

Is there a way to change the style of labels?
The color changes when I set a new color for ASM keywords. But I can't change
the style of the labels (currently they are italic).

Thanks!
by SCRJ
Sat Dec 26, 2009 11:08 am
Forum: General Discussion
Topic: #True is only 1, not all True
Replies: 19
Views: 8850

Re: #True is only 1, not all True

What Kaeru Gaman wants is basically 'true' boolean expression evaluation
as it's available in other languages such as C# or Java.
'true' and 'false' are completely separated from numbers.


Define myVar.i = 10
If myVar
Debug "True"
EndIf


That wouldn't work in those languages because 10 is not ...
by SCRJ
Sat Aug 29, 2009 11:31 am
Forum: Coding Questions
Topic: Window under Cursor?
Replies: 6
Views: 1373

Try WindowFromPoint_() :wink:
by SCRJ
Fri Aug 21, 2009 5:48 pm
Forum: Coding Questions
Topic: TextGadget with raised border?
Replies: 2
Views: 1152

Something like that?

Code: Select all

TextGadget(0, 10, 10, 300, 20, "Hello World", #WS_DLGFRAME)
by SCRJ
Wed Jun 10, 2009 5:41 pm
Forum: Coding Questions
Topic: Borderless Frame? Howto
Replies: 18
Views: 3991

Use the ContainerGadget to group the OptionGadgets.
by SCRJ
Sun Jun 07, 2009 2:19 am
Forum: Coding Questions
Topic: Can this be made to work identically using OpenScreen() ?
Replies: 3
Views: 1125

You could render the stuff on a sprite instead on the screen...like this:


; Ikeda Attractor AKJ 07-Jun-09
EnableExplicit
Define xoff=300, yoff=400, scale=170
Define.d c1=0.4, c2=0.9, c3=6.0, rho=1.0
Define i, j, k
Define.d temp, sin_temp, cos_temp, xt, y, x
InitSprite(): InitKeyboard ...
by SCRJ
Wed May 27, 2009 6:11 pm
Forum: Feature Requests and Wishlists
Topic: EnableExplicit on by default.
Replies: 40
Views: 8160

LOL @Trond :lol:

Would be nice to use EnableExplicit by default (+1),
but it's not necessary (-1), so

+0^^
by SCRJ
Sun May 24, 2009 11:32 pm
Forum: Announcement
Topic: PureBasic 4.31 beta 2 released!
Replies: 44
Views: 25206

Thanks :D
...Waiting for 4.40 :D
by SCRJ
Thu May 21, 2009 5:13 pm
Forum: Coding Questions
Topic: Use MS-DOS Commands in PB ???
Replies: 9
Views: 3660

Try this :D

Code: Select all

ImportC "msvcrt.lib" 
  system(str.p-ascii) 
EndImport 

OpenConsole() 

system("ver")
Input()

[Edit]
Not sure if the import is correct, but it seems to work.
by SCRJ
Tue Apr 07, 2009 3:39 pm
Forum: General Discussion
Topic: New Unofficial IDE in development
Replies: 44
Views: 12462

Looks great, can't wait for testing it :D
by SCRJ
Wed Mar 18, 2009 11:55 pm
Forum: Tricks 'n' Tips
Topic: Starting a clock collection...
Replies: 37
Views: 14113

Really cool, thanks for sharing :D
by SCRJ
Sun Jan 18, 2009 2:58 pm
Forum: Tricks 'n' Tips
Topic: Convert any bitmap to an RTF (rich text) string
Replies: 43
Views: 16519

>> Code is in the first post.
thx :D
by SCRJ
Sun Jan 18, 2009 2:40 am
Forum: Tricks 'n' Tips
Topic: Convert any bitmap to an RTF (rich text) string
Replies: 43
Views: 16519

Hi

Nice idea, thanks for sharing!

But as ts-soft said, this procedure is really, really slow.
It takes about 17 minutes (!) to convert a 365x390px image on my system (also Vista x64).

To improve this, I've used a "string builder" (you can get it here http://purebasic-lounge.com/viewtopic.php?t ...
by SCRJ
Sun May 04, 2008 3:15 pm
Forum: Coding Questions
Topic: Strange optimization timings
Replies: 9
Views: 2293

719
2297
1203
1312