Search found 4 matches

by KeyPusher
Thu Sep 11, 2025 4:35 pm
Forum: Bugs Reports
Topic: SB 3.10 - Strange display in dialog vbox
Replies: 0
Views: 7133

SB 3.10 - Strange display in dialog vbox

The red-filled canvas is not displayed correctly in the following example, even though the debug positions and sizes are correct. There should be no space between the gadgets (canvas). The bottom margin is also not maintained.
If all gadget heights are the same and greater than 10, everything is ...
by KeyPusher
Sat Aug 23, 2025 8:22 am
Forum: Bugs Reports
Topic: SB 3.10 - Error in the dialog library (gridbox, singlebox)?
Replies: 1
Views: 2051

SB 3.10 - Error in the dialog library (gridbox, singlebox)?

Regarding the gridbox: As an example, I have two buttons that should be the same size (colexpand=‘equal’). They are, but the text does not fit completely into the button. How much text is cut off depends on the font size. The larger the font, the less fits into the button.

Regarding the singlebox ...
by KeyPusher
Sun Aug 17, 2025 11:01 am
Forum: Bugs Reports
Topic: SB 3.10 - String gadget in dialog: Not all constants have an effect.
Replies: 0
Views: 2671

SB 3.10 - String gadget in dialog: Not all constants have an effect.

Unfortunately, the following constants have no effect:
#PB_String_LowerCase
#PB_String_UpperCase
#PB_String_PlaceHolder (I would like to use this)

Test code.


Xml$= "<window name='test' minwidth='300' minheight='auto' flags='#PB_Window_ScreenCentered|#PB_Window_SystemMenu|#PB_Window_SizeGadget ...
by KeyPusher
Sat Aug 16, 2025 12:17 pm
Forum: Bugs Reports
Topic: Operators '>>' and '&' do not work correctly with Quad types
Replies: 0
Views: 2541

Operators '>>' and '&' do not work correctly with Quad types

The operators '>>' and '&' seem to only process the first 32 bits for Quad types. The last 32 bits are written to zero.

The Debug command also does not seem to work correctly in connection with the '<<' operator.

SpiderBasic Version 3.10, Windows 10 x64


QuadTestValue.q=Pow(2,40);+256

QuadValue ...