Search found 184 matches

by PJBlack
Monday 5th December 2022 11:40pm
Forum: General
Topic: Pass a class to a variable
Replies: 11
Views: 3148

Re: Pass a class to a variable

maybe i'm too old for that shit but i did not understand one single word you wrote ...
by PJBlack
Friday 25th November 2022 3:11pm
Forum: General
Topic: Resize a picture
Replies: 5
Views: 911

Re: Resize a picture

picturebox with stretch = true ???

otherwise ... the image class has a function called stretch
by PJBlack
Wednesday 23rd November 2022 7:21am
Forum: General
Topic: Allowable characters in sqlite3 database file names
Replies: 4
Views: 759

Re: Allowable characters in sqlite3 database file names

confirmed Behavior ... but found this: Naming Conventions for SQLite Each database, table, column, index, trigger, or view has a name by which it is identified and almost always the name is supplied by the developer.The rules governing how a valid identifier is formed in SQLite are set out in the ne...
by PJBlack
Thursday 10th November 2022 12:43pm
Forum: General
Topic: Getting Data from Serial
Replies: 27
Views: 2990

Re: Getting Data from Serial

Ascii   Hex   Dec    Bin
<       3C    60     00111100
\       5C    92     01011100
by PJBlack
Tuesday 8th November 2022 2:23pm
Forum: General
Topic: Fix messages opening on the wrong screen
Replies: 4
Views: 745

Re: Fix messages opening on the wrong screen

after a very quick test it seems to work as expected ...
by PJBlack
Friday 16th September 2022 11:22am
Forum: General
Topic: Convert this C code to Gambas
Replies: 10
Views: 1949

Re: Convert this C code to Gambas

Bildschirmfoto vom 2022-09-16 13-19-50.png
Bildschirmfoto vom 2022-09-16 13-19-50.png (41.33 KiB) Viewed 1487 times
https://download.epson-biz.com/modules/ ... t=3&pid=36
by PJBlack
Sunday 14th August 2022 10:01pm
Forum: General
Topic: Help With JSON formatting
Replies: 26
Views: 4110

Re: Help With JSON formatting

try this one :
Dim jsonString As String = "{\"transactionType\":\"SALE\",\"amount\":\"" & transAmount & \"",\"currency\":\"GBP\"}"
by PJBlack
Saturday 13th August 2022 9:39am
Forum: General
Topic: Help With JSON formatting
Replies: 26
Views: 4110

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: 4110

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: 2926

Re: Classify a gambas classes explorer

3.17.1
info.tar.gz
(180.87 KiB) Downloaded 224 times