Search found 183 matches
- Thu Feb 12, 2026 2:16 pm
- Forum: General Discussion
- Topic: html interface
- Replies: 8
- Views: 861
Re: html interface
this for example gives me an error about "checkbox" is not a valid operator... how to handle the extra ""?
TextGadget(3, 10, 50, 250, 20, "<input type="checkbox">")
Because your syntax it incorrect with the quotes...
TextGadget(3, 10, 50, 250, 20, "<input type='checkbox'>")
- Wed Nov 19, 2025 4:19 pm
- Forum: General Discussion
- Topic: Web UI Tools
- Replies: 3
- Views: 5814
Re: Web UI Tools
We use PureVision with SpiderBasic Export Module to create User Interfaces for Web Apps 
- Sat Nov 15, 2025 6:17 pm
- Forum: Coding Questions
- Topic: WebGadget Android
- Replies: 5
- Views: 5964
Re: WebGadget Android
Works if I change
to secure website...
Global URL.s= "https://www.spiderbasic.com"
Code: Select all
Global URL.s= "http://www.spiderbasic.com"Global URL.s= "https://www.spiderbasic.com"
- Sat Nov 15, 2025 2:43 pm
- Forum: Coding Questions
- Topic: WebGadget Android
- Replies: 5
- Views: 5964
Re: WebGadget Android
Code: Select all
ResizeGadget(Wgadget, #PB_Ignore, #PB_Ignore, w , h)- Fri Mar 28, 2025 7:23 pm
- Forum: General Discussion
- Topic: Publishing on website instructions?
- Replies: 8
- Views: 66647
Re: Publishing on website instructions?
Is there a reason you can't load your images from a resource folder?
(See "Examples" folder "Waponez Web")
(See "Examples" folder "Waponez Web")
- Tue Jan 14, 2025 3:19 pm
- Forum: Coding Questions
- Topic: Tutorial?
- Replies: 7
- Views: 21738
Re: Tutorial?
No, there are no tutorials.
It is assumed you already know how to code in BASIC and there are code snippets/examples in the Help File and Examples folder showing how to use every command available.
By looking at the snippets/examples you get a very good idea how to write applications in ...
It is assumed you already know how to code in BASIC and there are code snippets/examples in the Help File and Examples folder showing how to use every command available.
By looking at the snippets/examples you get a very good idea how to write applications in ...
- Wed Sep 25, 2024 2:09 pm
- Forum: Coding Questions
- Topic: Moving a Gadget with a Tablet?
- Replies: 14
- Views: 26613
Re: Moving a Gadget with a Tablet?
Touchscreen ?Peter wrote: Wed Sep 25, 2024 11:54 am at least Windows are extended in SpiderBasic with draggable(). Can you tell us the name of the other lib?
- Wed Sep 25, 2024 1:02 am
- Forum: Coding Questions
- Topic: calculation problem
- Replies: 4
- Views: 8245
Re: calculation problem
As hoerbie said, use the proper function...
Code: Select all
Debug StrD(((3*60)+30)/60)- Sun Sep 22, 2024 4:26 pm
- Forum: Coding Questions
- Topic: Math/Calculation Problem
- Replies: 1
- Views: 6122
Re: Math/Calculation Problem
Use a proper type for decimal number...
Code: Select all
Arbeitszeit.d = ((Stunden * 60) + Minuten) / 60- Thu Aug 01, 2024 8:03 pm
- Forum: Feature Requests and Wishlists
- Topic: [Implemented] Put Android API Level to 34
- Replies: 4
- Views: 47566
Re: Put Android API Level to 34
Would be nice if SpiderBasic had a Manifest Editor like Basic4Android does where you can make these changes yourself like this...
AddManifestText(
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="30"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true ...
AddManifestText(
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="30"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true ...