Search found 70 matches

by hoerbie
Sun Mar 09, 2025 5:39 pm
Forum: Coding Questions
Topic: Numeric Entry Keypad
Replies: 5
Views: 12629

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

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

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

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

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 ...
by hoerbie
Tue Sep 24, 2024 5:02 pm
Forum: Coding Questions
Topic: calculation problem
Replies: 4
Views: 5018

Re: calculation problem

What goes wrong, is that you are using the wrong function, please have a look at the "Remarks" section of the SB docs:
https://www.spiderbasic.com/documentati ... g/str.html
by hoerbie
Fri Jun 28, 2024 9:41 am
Forum: Coding Questions
Topic: meta tags in index.html
Replies: 6
Views: 7768

Re: meta tags in index.html

Hi,

does something like

Code: Select all

! $('head').append('<here the html code>');
at the head of your SB code not work?
by hoerbie
Thu Jun 27, 2024 5:48 pm
Forum: General Discussion
Topic: SpiderBasic 3.00 is out !
Replies: 56
Views: 193035

Re: SpiderBasic 3.00 is out !

Thanks Fred, now there was a good motivation to renew my license :D
by hoerbie
Sat Jun 22, 2024 3:49 pm
Forum: General Discussion
Topic: SpiderBasic 3.00 is out !
Replies: 56
Views: 193035

Re: SpiderBasic 3.00 beta 5 is ready to test !

@Fred: Thanks a lot.
And a question: Maybe I've overlooked it, but the new "Mobile" functions of the OnsenUI are in the alphabetical help index, but there is no link to the overview of the "Mobile" library from the right side where all libraries are listed.
by hoerbie
Sat Jun 15, 2024 5:09 pm
Forum: Coding Questions
Topic: SB 3.00 b4: Not so serious problems
Replies: 3
Views: 4677

Re: SB 3.00 b4: Not so serious problems

Hi,
thanks for asking and sorry, as I could now debug some of the problems, it looks like it is not serious, so I changed the subject.
At first I was really shocked how bad the app worked or not worked when using longer, but:
When dialogs were not fully opened or filled with content, there were ...