Search found 77 matches
- Tue Jan 06, 2026 7:26 am
- Forum: Coding Questions
- Topic: Nouveau problème lors de la création d'un APK
- Replies: 2
- Views: 192
Re: Nouveau problème lors de la création d'un APK
I don‘t see/know what SB version you are using, but I think the solution is at the bottom of your error log, that you are using the wrong Java SDK version. For the build the gradle tool is used and it wants a 17.x SDK but finds an 11.x
- Mon Jan 05, 2026 5:19 pm
- Forum: Bugs Reports
- Topic: [Done] SB 3.2 StringGadget Placeholder is defect
- Replies: 1
- Views: 230
[Done] SB 3.2 StringGadget Placeholder is defect
Hi,
I don't know, if something was changed at the StringGadget and its #PB_String_PlaceHolder functionality?
Please have a look at the following example from the help with an added Placeholder gadget at the bottom (because it is missing) and try to click and type inside.
; Shows possible flags of ...
I don't know, if something was changed at the StringGadget and its #PB_String_PlaceHolder functionality?
Please have a look at the following example from the help with an added Placeholder gadget at the bottom (because it is missing) and try to click and type inside.
; Shows possible flags of ...
- Wed Nov 26, 2025 8:59 pm
- Forum: Coding Questions
- Topic: Anyone made Cordova plugin for given .aar library?
- Replies: 1
- Views: 819
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 ...
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 ...
- Fri Nov 21, 2025 3:31 pm
- Forum: Bugs Reports
- Topic: [Done] SB 3.10 App on older Android with CanvasGadget crash on ResizeObserver
- Replies: 2
- Views: 822
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 ...
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 ...
- Tue Nov 18, 2025 12:42 pm
- Forum: Bugs Reports
- Topic: [Done] SB 3.10 App on older Android with CanvasGadget crash on ResizeObserver
- Replies: 2
- Views: 822
[Done] 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 ...
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 ...
- Thu Sep 18, 2025 1:56 pm
- Forum: Coding Questions
- Topic: remove specific lines from the AndroidManifest.xml
- Replies: 6
- Views: 133465
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 ...
Through the menu bar you open "Compiler" and there you open "Create ...
- Tue Sep 16, 2025 11:36 am
- Forum: Coding Questions
- Topic: remove specific lines from the AndroidManifest.xml
- Replies: 6
- Views: 133465
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.
Then you can change everything you want and do the app making again and direct with cordova.
- Sun Mar 09, 2025 5:39 pm
- Forum: Coding Questions
- Topic: Numeric Entry Keypad
- Replies: 5
- Views: 14994
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 ...
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 ...
- Sat Mar 08, 2025 2:39 pm
- Forum: Coding Questions
- Topic: Numeric Entry Keypad
- Replies: 5
- Views: 14994
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 ...
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 ...
- Sun Feb 23, 2025 2:52 pm
- Forum: General Discussion
- Topic: [Help] CGI Perl with MySQL for Spiderbasic
- Replies: 5
- Views: 73422
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 ...
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 ...