Search found 187 matches

by PJBlack
Saturday 13th August 2022 9:39am
Forum: General
Topic: Help With JSON formatting
Replies: 26
Views: 4239

Re: Help With JSON formatting

don't know your json but if you like to have a quotation mark inside a string you have to escape it with a backslash ...

OR

something like so:
string = "first part" & chr(34) & "second part"
will result in: firstpart"second part
by PJBlack
Thursday 11th August 2022 12:21pm
Forum: General
Topic: Help With JSON formatting
Replies: 26
Views: 4239

Re: Help With JSON formatting

escape the quotation mark with \

string = " \"this should work \""
by PJBlack
Tuesday 3rd May 2022 5:08pm
Forum: Project showcase
Topic: Classify a gambas classes explorer
Replies: 2
Views: 2967

Re: Classify a gambas classes explorer

3.17.1
info.tar.gz
(180.87 KiB) Downloaded 230 times
by PJBlack
Tuesday 15th March 2022 5:42pm
Forum: Beginners
Topic: FOR/NEXT loop with variables/ solved!
Replies: 4
Views: 2413

Re: FOR/NEXT loop with variables

START.Value ... END.Value ???
by PJBlack
Sunday 30th January 2022 12:48am
Forum: Project showcase
Topic: FlareRenamer - program to rename files
Replies: 13
Views: 7812

Re: FlareRenamer - program to rename files

Bildschirmfoto vom 2022-01-30 01-41-21.png
Bildschirmfoto vom 2022-01-30 01-41-21.png (34.36 KiB) Viewed 4593 times
second time i try ... second version that did not work ...
by PJBlack
Thursday 20th January 2022 10:14am
Forum: Project showcase
Topic: Gambas Function sorter
Replies: 8
Views: 8288

Re: Gambas Function sorter

Bildschirmfoto vom 2022-01-20 11-12-18.png
Bildschirmfoto vom 2022-01-20 11-12-18.png (9.92 KiB) Viewed 8230 times
now that i am back here after various intensive care units ... be honest ... you missed me ;)
by PJBlack
Wednesday 19th January 2022 11:51am
Forum: Project showcase
Topic: Gambas Function sorter
Replies: 8
Views: 8288

Re: Gambas Function sorter

Image
by PJBlack
Tuesday 5th October 2021 9:51am
Forum: General
Topic: Adding help
Replies: 2
Views: 2044

Re: Adding help

by PJBlack
Friday 3rd September 2021 3:36pm
Forum: Component Showcase
Topic: GradientButton, set 2 colours and the background blends
Replies: 8
Views: 11111

Re: GradientButton, set 2 colours and the background blends

fyi [System] Gambas=3.16.90 6ae9c8f5c (master) OperatingSystem=Linux Kernel=5.10.60-1-MANJARO Architecture=x86_64 Distribution=Manjaro Linux Desktop=Cinnamon Font="",72,9 (which is wrong ... should read Font="72",9 Scale=7 Theme=proxy Language=de_DE.UTF-8 Memory=7836M and i have ...
by PJBlack
Friday 3rd September 2021 10:45am
Forum: Component Showcase
Topic: GradientButton, set 2 colours and the background blends
Replies: 8
Views: 11111

Re: GradientButton, set 2 colours and the background blends

if have a ugly black line on top of the button ... get rid of it with: [41 ]$hView.Border = Border.None [42] $hView.Background = &Hffffffff& and [120] Style.PaintButton(2, 2, Paint.Width - 4, Paint.Height - 4, $Value, 0, False, If(Me.HasFocus, Color.SelectedBackground, Color.Default))