Search found 191 matches

by PJBlack
Sunday 11th June 2023 12:19pm
Forum: General
Topic: File pattern
Replies: 10
Views: 4218

Re: File pattern

thank you, however, the credit in this case goes to benoit, after all, i did nothing more than search the wiki ;-)
by PJBlack
Saturday 10th June 2023 6:41pm
Forum: General
Topic: File pattern
Replies: 10
Views: 4218

Re: File pattern

complete description of dir you can find here: https://gambaswiki.org/edit/lang/dir this example did what you want i guess ... ' Print png and jpeg images in the user home directory. DIM Directory AS String DIM Files AS String[] DIM FileName AS String Directory = System.User.Home Files = Dir(Directo...
by PJBlack
Friday 26th May 2023 12:38pm
Forum: General
Topic: [Sloved sort of] Please Help
Replies: 3
Views: 1424

Re: Please Help

well then congratulations that it works now!

Hmmm, maybe that sounds better in german than in english ?
by PJBlack
Friday 26th May 2023 10:24am
Forum: General
Topic: [Sloved sort of] Please Help
Replies: 3
Views: 1424

Re: Please Help

when i search the forum for "serial" and "AndyGable" i find 42 entries ... so i can say that you and the serial port are not going to be friends anymore ... after skimming your code, i wonder: - why you don't use the corresponding events of the serial interface (_DSRChange, _ DTR...
by PJBlack
Saturday 25th March 2023 5:23pm
Forum: General
Topic: Modifying things with Automatic inheritance (Quick HowTo)
Replies: 12
Views: 4189

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

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

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

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

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

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...