Search found 67 matches

by Kurzer
Wed Oct 07, 2020 8:58 pm
Forum: Coding Questions
Topic: How to sort a structured list?
Replies: 2
Views: 1015

Re: How to sort a structured list?

Jupp, that's the reason why I glue my JSON string manually by hand in a ForEach loop. #JSON_Header = "{" + #EOL + " 'mpLayouts':{" + #EOL #JSON_Layout = " 'xLayoutName':{" + #EOL + " 'iAutoSwitchWidth':xiAutoSwitchWidth," + #EOL + " 'iAutoSwitchHeight':xi...
by Kurzer
Wed Oct 07, 2020 10:37 am
Forum: Coding Questions
Topic: Remove black frame around ListView item
Replies: 4
Views: 1450

Re: Remove black frame around ListView item

Thank you very much for the explanation, Peter. I got that far in the Inspector, but I couldn't find a CSS file for the class and I didn't recognize the focus property. When my current project is finished, I will have more time to deal with these things. But at the moment I have a lot of time pressu...
by Kurzer
Tue Oct 06, 2020 3:54 pm
Forum: Coding Questions
Topic: Remove black frame around ListView item
Replies: 4
Views: 1450

Re: Remove black frame around ListView item

Great, thanks Peter. Image
I guess I can't find this kind of hacks with the element inspector of the browser?

Markus
by Kurzer
Tue Oct 06, 2020 2:31 pm
Forum: Coding Questions
Topic: Remove black frame around ListView item
Replies: 4
Views: 1450

Remove black frame around ListView item

Hi all, is it a browser thing that when clicking into a Listview gadget, the current cell is displayed with a black border even if #PB_ListIcon_FullRowSelect is specified? (browser = iron, chromium based) I have not yet found out how to get rid of this frame. https://i.ibb.co/cQCJrZK/a01608e43a39.pn...
by Kurzer
Mon Oct 05, 2020 7:03 pm
Forum: Tricks 'n' Tips
Topic: Module: Database Interface Spider <-> Server / DB
Replies: 4
Views: 3204

Re: Module: Database Interface Spider <-> Server / DB

Updated to Version 1.10. The module has been simplified and optimized. It is no longer necessary to deal with user-defined events. When sending a server command the user specifies a callback procedure. This procedure is called automatically by the module after the corresponding server data has been ...
by Kurzer
Tue Sep 29, 2020 5:57 pm
Forum: Tricks 'n' Tips
Topic: Module: Database Interface Spider <-> Server / DB
Replies: 4
Views: 3204

Re: Module: Database Interface Spider <-> Server / DB

Updated to Version 1.02.

The modul is now ready for parallel communication with a server. Each server query get's it's own result set.
The description in the first post was updated.
by Kurzer
Sat Sep 26, 2020 12:14 pm
Forum: General Discussion
Topic: My thoughts on the SpiderBasic update policy
Replies: 15
Views: 8554

My thoughts on the SpiderBasic update policy

Although I'm only a recent SpiderBasic user, I've been a PureBasic user for a very long time. Therefore I got/have got the progress of SpiderBasic by the way. I want to share my thoughts about the update policy of Spiderbasic. As a SpiderBasic customer you have included free updates in your license ...
by Kurzer
Sat Sep 26, 2020 11:51 am
Forum: Coding Questions
Topic: SB changes gadget X/Y coordinates when size gets smaller
Replies: 1
Views: 981

SB changes gadget X/Y coordinates when size gets smaller

If a gadget becomes so small that its text does not fit into the gedget, SpiderBasic also changes the X,Y coordinates of the gadget, although these values are not touched during a resize. In PureBasic this phenomenon does not occur. https://i.ibb.co/dJQs8QG/e818a1d396d8.gif ------------ https://i.ib...
by Kurzer
Thu Sep 24, 2020 8:34 am
Forum: Bugs Reports
Topic: SpiderBasic and PureBasic behave differently at casting INTs
Replies: 0
Views: 5161

SpiderBasic and PureBasic behave differently at casting INTs

SpiderBasic and PureBasic behave differently when casting data types (integer, float)
The following snippet returns a valid floating point number in SpiderBasic and zero in PureBasic.

Code: Select all

Define.i Width=320, Height=99
Debug 100 / Width * Height
Markus
by Kurzer
Wed Sep 23, 2020 2:16 pm
Forum: Coding Questions
Topic: convert structured list() to json string
Replies: 3
Views: 1157

Re: convert structured list() to json string

Menschmarkus, keep in mind that the order of the structure members can always be random. From my own experience I can say that the order of structure members in SpiderBasic and Purebasic is not always different, but both development environments produce a different version of a JSON string from the ...