Search found 75 matches

by hoerbie
Wed Nov 26, 2025 8:59 pm
Forum: Coding Questions
Topic: Anyone made Cordova plugin for given .aar library?
Replies: 1
Views: 97

Anyone made Cordova plugin for given .aar library?

Hi,
in the last years I got really good in adding missing functions to SB or changing/optimizing functions of SB with javascript, and I also added some Cordova plugins from GitHub and sometimes did small modifications on them (for example bluetooth print and qr/barcode scanner with camera).

But now ...
by hoerbie
Fri Nov 21, 2025 3:31 pm
Forum: Bugs Reports
Topic: SB 3.10 App on older Android with CanvasGadget crash on ResizeObserver
Replies: 1
Views: 125

Re: SB 3.10 App on older Android with CanvasGadget crash on ResizeObserver

Hi,
I did some further tests, and with SB <= 3.02 this error doesn't happen, so I think it is a regression from the in SB 3.10 added feature:
- Added: #PB_EventType_Resize support for ContainerGadget(), ScrollAreaGadget(), Canvas() and PanelGadget()

And just in case anyone else stumbles across ...
by hoerbie
Tue Nov 18, 2025 12:42 pm
Forum: Bugs Reports
Topic: SB 3.10 App on older Android with CanvasGadget crash on ResizeObserver
Replies: 1
Views: 125

SB 3.10 App on older Android with CanvasGadget crash on ResizeObserver

Hi,
at the moment I'm testing one big Android app compiled the first time with SB 3.1 on a lot of devices, starting with Android >= 10 everything seems to work, but on older Sunmi devices with for example Android 7.1.x, the app seems to run only until there is a CanvasGadget() defined, then the ...
by hoerbie
Thu Sep 18, 2025 1:56 pm
Forum: Coding Questions
Topic: remove specific lines from the AndroidManifest.xml
Replies: 6
Views: 111944

Re: remove specific lines from the AndroidManifest.xml

Sorry, I can't give you the real way I did it, cause I think I wrote it somewhere here in the board, but I can't find it now. Maybe it was deleted by Fred, as it was in the "Bugs" section and the bugs I posted were solved. :shock:

Through the menu bar you open "Compiler" and there you open "Create ...
by hoerbie
Tue Sep 16, 2025 11:36 am
Forum: Coding Questions
Topic: remove specific lines from the AndroidManifest.xml
Replies: 6
Views: 111944

Re: remove specific lines from the AndroidManifest.xml

It should be possible, if you select to keep the compile directory after compiling and find it’s temporary location.
Then you can change everything you want and do the app making again and direct with cordova.
by hoerbie
Sun Mar 09, 2025 5:39 pm
Forum: Coding Questions
Topic: Numeric Entry Keypad
Replies: 5
Views: 13811

Re: Numeric Entry Keypad

It's my pleasure to share...
The above was what I needed for my app, but some googling will give more types, for example
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode
https://css-tricks.com/everything-you-ever-wanted-to-know-about-inputmode/
You will have to find ...
by hoerbie
Sat Mar 08, 2025 2:39 pm
Forum: Coding Questions
Topic: Numeric Entry Keypad
Replies: 5
Views: 13811

Re: Numeric Entry Keypad

Sorry, but there is no pic, so maybe I'm wrong.

But if you want to open a special keypad on a mobile phone when clicking into a StringGadget, on Android a function like this works, if you call it with the ID-number of the StringGadget:

Procedure SetStringGadgetKeyboard(id.i, kbdt.u)
If kbdt = 1 ...
by hoerbie
Sun Feb 23, 2025 2:52 pm
Forum: General Discussion
Topic: [Help] CGI Perl with MySQL for Spiderbasic
Replies: 5
Views: 62524

Re: [Help] CGI Perl with MySQL for Spiderbasic

Do you have SSH access (as root?) and are the make tools installed?

Then please try:
wget https://cpan.metacpan.org/authors/id/H/HM/HMBRAND/DBI-1.647.tgz

tar -xzf DBI-1.647.tgz
cd DBI-1.647
perl Makefile.PL
make
make test
make install

wget https://cpan.metacpan.org/authors/id/D/DV/DVEEDEN/DBD ...
by hoerbie
Sat Feb 22, 2025 7:20 pm
Forum: General Discussion
Topic: [Help] CGI Perl with MySQL for Spiderbasic
Replies: 5
Views: 62524

Re: [Help] CGI Perl with MySQL for Spiderbasic

Is there no chance to install the DBI and the DBD-mysql modules? For example using ssh login?
I work(ed) a lot with perl, use(d) the DBI and DBD-mysql, and would love to help you, through pm or mail in german, as you are such a big help for PB.
by hoerbie
Wed Sep 25, 2024 7:38 am
Forum: Coding Questions
Topic: calculation problem
Replies: 4
Views: 6188

Re: calculation problem

Sorry, I don't understand what you mean by

Result: 100000000000000000
it kills a 1 in se last line

And your new examples like
Value.q = 2.522
Debug "Result: " + Str(Value)

can't work now because of two errors.

Paul directly posted the right function, that I thought you could find yourself ...