Search found 163 matches
- Sat Aug 23, 2025 8:17 pm
- Forum: Coding Questions
- Topic: Read barcodes
- Replies: 4
- Views: 92650
Re: Read barcodes
Search for a Cordova plug-in, for sure exists a way to use ir on SB.
- Sat Aug 23, 2025 8:11 pm
- Forum: Bugs Reports
- Topic: SB 3.10 - Error in the dialog library (gridbox, singlebox)?
- Replies: 1
- Views: 2032
Re: SB 3.10 - Error in the dialog library (gridbox, singlebox)?
I don't have an answer to your question, but in such a case I would use: colexpand='yes' 

- Thu Jun 19, 2025 9:27 am
- Forum: General Discussion
- Topic: Homepage Error
- Replies: 3
- Views: 3949
Re: Homepage Error
@Fred migrated the forums to a new server, may be the download section was not fully migrated.
- Sat Jun 14, 2025 9:27 am
- Forum: Bugs Reports
- Topic: No image on the spash screen (Android)
- Replies: 0
- Views: 4491
No image on the spash screen (Android)
If your device has a small screen (i.e. 4.5"), you cannot see the splash image, only the background color is displayed.
- Sat Jun 14, 2025 5:01 am
- Forum: Coding Questions
- Topic: Example program folder missing with 3.02 install
- Replies: 4
- Views: 18201
- Wed Jun 11, 2025 10:06 am
- Forum: Feature Requests and Wishlists
- Topic: About the new native notification library for mobile apps...
- Replies: 7
- Views: 5874
Re: About the new native notification library for mobile apps...
Oops! you are right!



- Wed Jun 11, 2025 9:44 am
- Forum: Feature Requests and Wishlists
- Topic: About the new native notification library for mobile apps...
- Replies: 7
- Views: 5874
Re: About the new native notification library for mobile apps...
I know, the notification can show even with the app closed, but on this case you are limited a notifications created when the app is running (timed notifications).
I mean (in example) a notification that is shown when a background process trigger something (not time) like an update for the app, an ...
I mean (in example) a notification that is shown when a background process trigger something (not time) like an update for the app, an ...
- Wed Jun 11, 2025 5:50 am
- Forum: Coding Questions
- Topic: Incorrect div -HTMLMobile
- Replies: 6
- Views: 5358
Re: Incorrect div -HTMLMobile
I think would be better if the HtmlMobile write the code as is.
This way we can do things like wrap a fragment of SB code like this:
HtmlMobile("<div class=" + Chr(34) + "card" + Chr(34) + ">")
...
SB code
...
HtmlMobile("</div>")
I miss that feature many times.
Also would be nice if SB add a ...
This way we can do things like wrap a fragment of SB code like this:
HtmlMobile("<div class=" + Chr(34) + "card" + Chr(34) + ">")
...
SB code
...
HtmlMobile("</div>")
I miss that feature many times.
Also would be nice if SB add a ...
- Tue Jun 10, 2025 5:39 pm
- Forum: Feature Requests and Wishlists
- Topic: About the new native notification library for mobile apps...
- Replies: 7
- Views: 5874
About the new native notification library for mobile apps...
Whould be awesome if we can run processes in background to make that notification library more useful.
I think already exists a cordova plugin for that, but I don't tested.
I think already exists a cordova plugin for that, but I don't tested.
- Sun Jun 08, 2025 7:57 pm
- Forum: Coding Questions
- Topic: How to read keyboard keys into a window
- Replies: 5
- Views: 5795
Re: How to read keyboard keys into a window
Your code is... "strange" to me :?
Anyway I don't know if I understand you well.
I can get key inputs (if the canvas was focused) this way:
Debug ""
Procedure Gadget_event()
If EventType()=#PB_EventType_Input
Debug Chr(GetGadgetAttribute(0, #PB_Canvas_Input))
EndIf
EndProcedure
OpenWindow(0, 0 ...
Anyway I don't know if I understand you well.
I can get key inputs (if the canvas was focused) this way:
Debug ""
Procedure Gadget_event()
If EventType()=#PB_EventType_Input
Debug Chr(GetGadgetAttribute(0, #PB_Canvas_Input))
EndIf
EndProcedure
OpenWindow(0, 0 ...