Search found 187 matches

by PJBlack
Saturday 25th March 2023 5:23pm
Forum: General
Topic: Modifying things with Automatic inheritance (Quick HowTo)
Replies: 12
Views: 3538

Re: Modifying things with Automatic inheritance (Quick HowTo)

BruceSteers wrote: Saturday 25th March 2023 4:00pm [I have asked the experts for a reason as to why it does not work........
have read ...

the property did not show up in the .form because false is the default value for it ... having a textlabel2.class then the property show up in .form only if changed to true
by PJBlack
Saturday 25th March 2023 3:57pm
Forum: General
Topic: Modifying things with Automatic inheritance (Quick HowTo)
Replies: 12
Views: 3538

Re: Modifying things with Automatic inheritance (Quick HowTo)

BruceSteers wrote: Saturday 25th March 2023 3:52pm I tried your code and got the variables in the IDE but could not change them.
same here ...
BruceSteers wrote: Saturday 25th March 2023 3:52pm If you rename the class to TextLabel2.class and add "Inherits TextLabel" then it all works as expected.
I know ... but thats nt what I want
BruceSteers wrote: Saturday 25th March 2023 3:52pm Seems like a bug
:D ;) then fix it :P
by PJBlack
Saturday 25th March 2023 10:28am
Forum: General
Topic: Modifying things with Automatic inheritance (Quick HowTo)
Replies: 12
Views: 3538

Re: Modifying things with Automatic inheritance (Quick HowTo)

I overload the "TextLabel" class with my own properties. What works so far programmatically, but in the IDE I can not enter new values. ' Gambas class file Export Public Const _Properties As String = "*,IsHeader,IsList" Property IsHeader As Boolean Private $IsHeader As Boolean = ...
by PJBlack
Monday 5th December 2022 11:40pm
Forum: General
Topic: Pass a class to a variable
Replies: 11
Views: 3231

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

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

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

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

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

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 1508 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: 4235

Re: Help With JSON formatting

try this one :
Dim jsonString As String = "{\"transactionType\":\"SALE\",\"amount\":\"" & transAmount & \"",\"currency\":\"GBP\"}"