Search found 4 matches

by Hyper
Fri Jun 04, 2010 8:47 am
Forum: Tricks 'n' Tips
Topic: Some words about PureBasic - Printer
Replies: 2
Views: 1867

Re: Some words about PureBasic - Printer

Thank you for sharing this, dige - very helpful!
by Hyper
Tue Nov 24, 2009 5:37 pm
Forum: Coding Questions
Topic: A Plain-text only editorGadget?
Replies: 24
Views: 3873

Re: A Plain-text only editorGadget?

Hello,

I suppose, these 2 little functions are useful for you:

http://www.purebasic.fr/german/viewtopi ... =8&t=21039

Best wishes
Hyper
by Hyper
Tue Nov 03, 2009 4:37 pm
Forum: Feature Requests and Wishlists
Topic: ColorRequester everything ok
Replies: 3
Views: 867

Re: ColorRequester: define custom colors doesn't work

Really you are right:
I chose a color from the right custom-color-field with the cursor and pushed the button “add color”. But, the box on left side doesn’t change. Why? The vertical track bar stayed at the lowest position, so each color you choose from the field will be initially black. And if you ...
by Hyper
Tue Nov 03, 2009 10:12 am
Forum: Feature Requests and Wishlists
Topic: ColorRequester everything ok
Replies: 3
Views: 867

ColorRequester everything ok

Hello,

as written in the title, is not possible to define and apply a custom color. Can be tested with the code from the help:
[code]
Farbe.l = ColorRequester()
If Farbe > -1
a$ = "Sie haben folgende Farbwerte ausgewählt:" + Chr(10) ; Chr(10) wird nur
a$ + "24 Bit Wert: " + Str(Farbe) + Chr(10 ...