Great news! Thank you.
I'll try to test as much as I can.
Search found 102 matches
- Wed Jun 24, 2026 11:44 am
- Forum: General Discussion
- Topic: SpiderBasic 4.00 beta 1 is out !
- Replies: 27
- Views: 6859
- Wed May 27, 2026 1:23 pm
- Forum: General Discussion
- Topic: SpiderBasic 4.00 beta 1 is out !
- Replies: 27
- Views: 6859
Re: SpiderBasic 3.30 beta 2 is out !
Great news, thank you!Fred wrote: Wed May 27, 2026 10:22 am - 2026-05-27: beta 2 is out, with some bug fixes, and a new DateUTC() function.
- Wed Jan 28, 2026 7:56 pm
- Forum: Showcase
- Topic: MaterialSB brings Material Design to SpiderBasic.
- Replies: 10
- Views: 18548
Re: MaterialSB brings Material Design to SpiderBasic.
Amazing work! Congratulations!!!
+1 for not using Git
+1 for the awesome site
+1 for the documentation
+1 for not using Git
+1 for the awesome site
+1 for the documentation
- Thu Jan 01, 2026 11:17 am
- Forum: Coding Questions
- Topic: Mobile UI Style Attribute
- Replies: 3
- Views: 10744
Re: Mobile UI Style Attribute
I've investigated a little.
TextMobile() creates a <DIV> with no id, class, style or whatsoever in the generated HTML/JS.
Example:
Enumeration
#title
#text
EndEnumeration
If ContainerMobile(#PB_Any, #PB_Mobile_Page)
; Works:
ButtonMobile(#title, "Hello World")
SetMobileAttribute(#title ...
TextMobile() creates a <DIV> with no id, class, style or whatsoever in the generated HTML/JS.
Example:
Enumeration
#title
#text
EndEnumeration
If ContainerMobile(#PB_Any, #PB_Mobile_Page)
; Works:
ButtonMobile(#title, "Hello World")
SetMobileAttribute(#title ...
- Mon Dec 29, 2025 2:31 pm
- Forum: Coding Questions
- Topic: Mobile UI and <div class="list-item__subtitle
- Replies: 4
- Views: 11708
Re: Mobile UI and <div class="list-item__subtitle
I see.
I'm sure it's possible to reproduce this better, but here's a first approach:
Enumeration
#Container
#List
EndEnumeration
; Create an image
CreateImage(0, 42, 32, 24, RGB(255, 0, 0))
If StartDrawing(ImageOutput(0))
Box(0, 0, 42, 42, RGB(255, 128, 128))
StopDrawing()
EndIf
If ...
I'm sure it's possible to reproduce this better, but here's a first approach:
Enumeration
#Container
#List
EndEnumeration
; Create an image
CreateImage(0, 42, 32, 24, RGB(255, 0, 0))
If StartDrawing(ImageOutput(0))
Box(0, 0, 42, 42, RGB(255, 128, 128))
StopDrawing()
EndIf
If ...
- Mon Dec 29, 2025 8:14 am
- Forum: Coding Questions
- Topic: Mobile UI and <div class="list-item__subtitle
- Replies: 4
- Views: 11708
Re: Mobile UI and <div class="list-item__subtitle
Hello
Multiple objects of Onsen UI allow subtitles. Is it possible to create them with SpiderBasic?
It would be helpful if you could provide a link / image / drawing of what you exactly mean and what you're trying to achieve.
Is there any test/demo-code you can provide? Remember: the more ...
- Mon Dec 29, 2025 8:09 am
- Forum: Coding Questions
- Topic: Visual Form Designer
- Replies: 2
- Views: 10397
Re: Visual Form Designer
PureVision Form Designer
Also, there's IceGUIDesign. It's intended for PureBasic, but I've also used it for SpiderBasic. https://github.com/ChrisRfr/IceDesign
You could also try/use HeX0r's Dialog Designer => https://hex0rs.coderbu.de/sdm_downloads/dialogdesign0r-de/
Rumor's have it, that ...
- Wed Dec 17, 2025 7:55 pm
- Forum: Coding Questions
- Topic: Toolbarmobile() and Listmobile() issue
- Replies: 8
- Views: 16530
Re: Toolbarmobile() and Listmobile() issue
I've installed 3.10 now, just to make sure we're on the same version.
I don't know the internals of OnsenUI (which SB uses for MobileUI to my knowledge), but it does not seem to me, that it's able to display what your example above shows out of the box.
Does not mean, it's impossible at all though ...
I don't know the internals of OnsenUI (which SB uses for MobileUI to my knowledge), but it does not seem to me, that it's able to display what your example above shows out of the box.
Does not mean, it's impossible at all though ...
- Wed Dec 17, 2025 4:33 pm
- Forum: Coding Questions
- Topic: Toolbarmobile() and Listmobile() issue
- Replies: 8
- Views: 16530
Re: Toolbarmobile() and Listmobile() issue
Thank you for the clarification.
I'm currently working with SB 3.20 beta 2 and this seems to have some issues.
The 'mobileUI.sb' example isn't even loading; when tinkering around to resemble your idea (3 lists next to each other), I have strange behaviour. Would be good if anyone else could test ...
I'm currently working with SB 3.20 beta 2 and this seems to have some issues.
The 'mobileUI.sb' example isn't even loading; when tinkering around to resemble your idea (3 lists next to each other), I have strange behaviour. Would be good if anyone else could test ...
- Wed Dec 17, 2025 12:46 pm
- Forum: Coding Questions
- Topic: Toolbarmobile() and Listmobile() issue
- Replies: 8
- Views: 16530
Re: Toolbarmobile() and Listmobile() issue
I'm not entirely sure, what you want to achieve.
To me: your code basically looks okay. I just don't think, that a Mobile_List() is supposed to be in a ToolBarMobile().
Or more detailed:
I've done some tests and for me, it's NOT possible to create a ContainerMobile() and successfully put it into a ...
To me: your code basically looks okay. I just don't think, that a Mobile_List() is supposed to be in a ToolBarMobile().
Or more detailed:
I've done some tests and for me, it's NOT possible to create a ContainerMobile() and successfully put it into a ...