Search found 2 matches

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: 107

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: 88

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 ...