I looked through some historical posts, and it is not clear how to store binary images for later use in SpiderBasic.
Is the DataSection the right place to store images?
Search found 47 matches
- Fri Mar 28, 2025 6:46 pm
- Forum: General Discussion
- Topic: Publishing on website instructions?
- Replies: 8
- Views: 30611
- Fri Mar 28, 2025 1:16 pm
- Forum: General Discussion
- Topic: Publishing on website instructions?
- Replies: 8
- Views: 30611
Re: Publishing on website instructions?
Ha! Didn't know that?
So, if I can store the bytes of an image in my DataSection, I forget how to retrieve that into an image.
Would that be blocked in browser?
So, if I can store the bytes of an image in my DataSection, I forget how to retrieve that into an image.
Would that be blocked in browser?
- Thu Mar 27, 2025 8:31 pm
- Forum: General Discussion
- Topic: Publishing on website instructions?
- Replies: 8
- Views: 30611
Re: Publishing on website instructions?
Yeah, I get that, but I thought SpiderBasic would compile the image into the safe browser space?
Do I have to put the image in a DataSection and CatchImage?
Do I have to put the image in a DataSection and CatchImage?
- Thu Mar 27, 2025 8:10 pm
- Forum: General Discussion
- Topic: Publishing on website instructions?
- Replies: 8
- Views: 30611
Re: Publishing on website instructions?
I was hoping to show an QR code image on a web page and use Google Authenticator to read the image.
Google Authenticator will not scan the image if I load it into a simple html page and view in a chrome tab.
It only fires up with a web server page, so I thought to try it in SpiderBasic.
But now ...
Google Authenticator will not scan the image if I load it into a simple html page and view in a chrome tab.
It only fires up with a web server page, so I thought to try it in SpiderBasic.
But now ...
- Thu Oct 10, 2024 8:25 pm
- Forum: General Discussion
- Topic: Why this forum is lightyears far from PureBasic forum?
- Replies: 15
- Views: 38543
Re: Why this forum is lightyears far from PureBasic forum?
+100 for a single forum.
- Tue Oct 08, 2024 8:58 pm
- Forum: General Discussion
- Topic: Why this forum is lightyears far from PureBasic forum?
- Replies: 15
- Views: 38543
Re: Why this forum is lightyears far from PureBasic forum?
I would love documentation that marries PB+webserver(windows and raspberryPI)+SB for a client-server demo.
Idle has made a very fine webserver.
The iOS and Android and raspberryPI build paths are also desirable.
Maybe a dedicated forum post for each?
Idle has made a very fine webserver.
The iOS and Android and raspberryPI build paths are also desirable.
Maybe a dedicated forum post for each?
- Thu Jun 27, 2024 10:42 pm
- Forum: Feature Requests and Wishlists
- Topic: [IDE v3] Make Webview Window Floatable
- Replies: 3
- Views: 14185
Re: [IDE v3] Make Webview Window Floatable
Cool.
I installed SB v3 fresh and had to redo my preferences.
Now it's back to normal.
There is some double debug windowing when the browser takes over, but not a big deal.

I installed SB v3 fresh and had to redo my preferences.
Now it's back to normal.
There is some double debug windowing when the browser takes over, but not a big deal.
- Thu Jun 27, 2024 6:08 pm
- Forum: Feature Requests and Wishlists
- Topic: [IDE v3] Make Webview Window Floatable
- Replies: 3
- Views: 14185
[IDE v3] Make Webview Window Floatable
Any chance to make the WebView window floatable.
It is annoying to use a splitter to see results and code.
It is annoying to use a splitter to see results and code.
- Tue Feb 20, 2024 10:10 pm
- Forum: Coding Questions
- Topic: open a database
- Replies: 22
- Views: 71266
Re: open a database
If your clients are across the globe, you will need a server of some sort.
SQLite is not great for networked access.
Postgresql manages concurrency with a bit more startup complexity.
You can't go wrong prototyping with [PureBasic + SQLite] <--> SpiderBasic.
Once you have the business logic worked ...
SQLite is not great for networked access.
Postgresql manages concurrency with a bit more startup complexity.
You can't go wrong prototyping with [PureBasic + SQLite] <--> SpiderBasic.
Once you have the business logic worked ...
- Fri Feb 16, 2024 3:16 pm
- Forum: Coding Questions
- Topic: open a database
- Replies: 22
- Views: 71266
Re: open a database
Did you try PureBasic?nad wrote: Thu Feb 15, 2024 12:35 pm I'm trying to open a sqlite database..
I'm having trouble trying to understand the steps involved.
I tried; OpenDatabase(1,"c:\rbp101\projects\foodbank_project\data\fb.db") But get errors.
So how do I open the database..
Thanks for the help..
Dan