I think they are interpreting your request as "read" instead of "re-add"
Search found 1208 matches
- Sun Feb 01, 2026 10:25 pm
- Forum: Coding Questions
- Topic: ListIconGadget with just some checkboxes
- Replies: 18
- Views: 1859
Re: ListIconGadget with just some checkboxes
- Wed Jan 21, 2026 7:46 pm
- Forum: Coding Questions
- Topic: How to read Json results?
- Replies: 13
- Views: 2324
Re: How to read Json results?
My json does not have back slashes. It doesn't work with the original download. The structure is not the same.
As HeXOR stated, we can only work with what you provide us and the JSON data provided translates to the structure we used.
The backslashes are only so we can post a working code ...
- Wed Jan 21, 2026 3:08 pm
- Forum: Coding Questions
- Topic: How to read Json results?
- Replies: 13
- Views: 2324
Re: How to read Json results?
You could try ExtractJSONStructure ...
jsonResult$=~"{\"items\":[{\"id\":\"f4bfd5334d074a8ab5e414213561e1ea\",\"parent_id\":\"1462c63203244ab88f5e729673ae87d1\",\"title\":\"Core Zettel idee\",\"deleted_time\":0},{\"id\":\"30e176160896445eacfdd0305e4d2f0a\",\"parent_id ...
jsonResult$=~"{\"items\":[{\"id\":\"f4bfd5334d074a8ab5e414213561e1ea\",\"parent_id\":\"1462c63203244ab88f5e729673ae87d1\",\"title\":\"Core Zettel idee\",\"deleted_time\":0},{\"id\":\"30e176160896445eacfdd0305e4d2f0a\",\"parent_id ...
- Tue Dec 23, 2025 9:03 pm
- Forum: Applications - Feedback and Discussion
- Topic: PureVision Form Designer for PureBasic/SpiderBasic
- Replies: 33
- Views: 20964
Re: PureVision Form Designer for PureBasic/SpiderBasic
Hi zikitrake,zikitrake wrote: Tue Dec 23, 2025 10:58 am Would it be possible to add the automatic resizing function to the SpiderBasic export module, as it is in PB (PVDynamics_Resize())
The PVDynamic_Resize options available to PureBasic are already available to SpiderBasic
- Sun Nov 16, 2025 6:58 am
- Forum: Windows
- Topic: Make selected PanelGadget tab bold?
- Replies: 10
- Views: 2812
Re: Make selected PanelGadget tab bold?
Just hope that none of your users have a 4K monitor when using this code or they'll have a whole other problem with reading the tabs


- Thu Aug 28, 2025 8:39 pm
- Forum: Coding Questions
- Topic: Bug WebViewGadget With FrameGadget [resolved]
- Replies: 8
- Views: 1431
Re: Bug WebViewGadget With FrameGadget [resolved]
I have to disagree with this one.
The FrameGadget only overlaps if you put another Gadget over the outside frame that is drawn.
The center of the FrameGadget is hollow (so to speak) so nothing overlaps in the center.
What makes no sense is why the WebViewGadget seems to be the only Gadget that acts ...
The FrameGadget only overlaps if you put another Gadget over the outside frame that is drawn.
The center of the FrameGadget is hollow (so to speak) so nothing overlaps in the center.
What makes no sense is why the WebViewGadget seems to be the only Gadget that acts ...
- Thu Aug 28, 2025 6:57 pm
- Forum: Coding Questions
- Topic: Bug WebViewGadget With FrameGadget [resolved]
- Replies: 8
- Views: 1431
Re: Bug WebViewGadget With FrameGadget [resolved]
Or just draw the FrameGadget last...
OpenWindow(0, 100, 100, 400, 400, "Hello", #PB_Window_SystemMenu)
WebViewGadget(1, 30, 40, 345, 100)
FrameGadget(0,15,15,370,200,"Bug with Frame gadget")
SetGadgetText(1, "file://" + #PB_Compiler_Home + "examples/sources/Data/WebView/webview.html")
Repeat ...
OpenWindow(0, 100, 100, 400, 400, "Hello", #PB_Window_SystemMenu)
WebViewGadget(1, 30, 40, 345, 100)
FrameGadget(0,15,15,370,200,"Bug with Frame gadget")
SetGadgetText(1, "file://" + #PB_Compiler_Home + "examples/sources/Data/WebView/webview.html")
Repeat ...
- Mon Aug 25, 2025 10:07 pm
- Forum: Coding Questions
- Topic: Window goes to maximum after monitor turned off and on again
- Replies: 10
- Views: 1913
Re: Window goes to maximum after monitor turned off and on again
Ya, pretty sure it's not suppose to do that since no other apps that are open "auto maximize" when monitor is power cycled.
Just a note... depending on the compiler version I use, older versions will cause the window to get smaller and smaller (instead of maximizing) every time the monitor is power ...
Just a note... depending on the compiler version I use, older versions will cause the window to get smaller and smaller (instead of maximizing) every time the monitor is power ...
- Wed Apr 23, 2025 10:46 pm
- Forum: Coding Questions
- Topic: MessageRequester Positioning
- Replies: 8
- Views: 1294
Re: MessageRequester Positioning
So what is the purpose of ...
March 27, 2024 : Version 6.10 LTS
Added - Parent window support to all requesters
I would have assumed if Parent ID flag is used the MessageRequester would appear centered with the Parent instead of the Screen.
March 27, 2024 : Version 6.10 LTS
Added - Parent window support to all requesters
I would have assumed if Parent ID flag is used the MessageRequester would appear centered with the Parent instead of the Screen.
- Thu Mar 27, 2025 12:55 am
- Forum: Coding Questions
- Topic: Image not showing in window with ImageGadget
- Replies: 5
- Views: 512
Re: Image not showing in window with ImageGadget
UsePNGImageDecoder() ??
- Thu Mar 06, 2025 1:23 am
- Forum: Coding Questions
- Topic: Typing Menu Letter into StringGadget.
- Replies: 8
- Views: 1089
Re: Typing Menu Letter into StringGadget.
When Space is pressed a menu event is triggered
When W is press a menu event is triggered
If you are typing in the StringGadget you don't want a menu event to trigger, you want Space or W to display in the StringGadget which is why you would remove the keyboard shortcut for Space and W when the ...
When W is press a menu event is triggered
If you are typing in the StringGadget you don't want a menu event to trigger, you want Space or W to display in the StringGadget which is why you would remove the keyboard shortcut for Space and W when the ...
- Thu Mar 06, 2025 12:42 am
- Forum: Coding Questions
- Topic: Typing Menu Letter into StringGadget.
- Replies: 8
- Views: 1089
Re: Typing Menu Letter into StringGadget.
You would have to add/remove "space" as well if you want "space" to workBarryG wrote: Tue Mar 04, 2025 10:08 pm Rashad, I can still type "w" into the StringGadget with your code (but not Space).
- Wed Feb 12, 2025 11:58 pm
- Forum: General Discussion
- Topic: Website incredibly slow?
- Replies: 83
- Views: 29548
Re: Website incredibly slow?
Yes... INCREDIBLY ... slow
It's also forgetting who I am and making me log in again every few sessions.
It's also forgetting who I am and making me log in again every few sessions.
- Wed Feb 12, 2025 12:19 am
- Forum: The PureBasic Editor
- Topic: Please insert hardcopy in the PB IDE
- Replies: 13
- Views: 4244
Re: Please insert hardcopy in the PB IDE
Works fine here using that Windows/PureBasic setup.Skipper wrote: Tue Feb 11, 2025 11:35 pm Trying to get it to work on Win11 with PB6.2b4 failed. Nothing happens when pressing CTRL-P, the same when running it as administrator.
Sounds like you didn't view the ReadMe.txt file and set things up correctly under Configure Tools?
- Fri Feb 07, 2025 8:19 pm
- Forum: The PureBasic Editor
- Topic: Please insert hardcopy in the PB IDE
- Replies: 13
- Views: 4244
Re: Please insert hardcopy in the PB IDE
This was made about 16 years ago as an "add-on" tool for the PureBasic IDE and I still use it today.
A simple CTRL-P in the IDE and source is sent to the Printer or a PDF.
https://www.reelmedia.org/pureproject/a ... rdcopy.zip
A simple CTRL-P in the IDE and source is sent to the Printer or a PDF.
https://www.reelmedia.org/pureproject/a ... rdcopy.zip