Page 2 of 2
Re: SpiderBasic 3.20 is out !
Posted: Wed Feb 11, 2026 8:05 am
by munfraid
RBart wrote: Wed Feb 11, 2026 7:38 am
On Ubuntu:
MessageRequester("Desktop Information", "You have " + ExamineDesktops() + " active web page")
this gives me the error
[08:36:33] [COMPILER] Line 1: Bad parameter type, number expected instead of string.
Unlike PureBasic there is no parameter fot the title for SB:
https://www.spiderbasic.com/documentati ... ester.html
So it must be:
Code: Select all
MessageRequester("You have " + ExamineDesktops() + " active web page")
Re: SpiderBasic 3.20 is out !
Posted: Wed Feb 11, 2026 8:42 am
by RBart
Ok got it.
you mean:
Code: Select all
MessageRequester("You have " + ExamineDesktops() + " active web page")
Can the helpfiles be updated in this way?
Re: SpiderBasic 3.20 is out !
Posted: Wed Feb 11, 2026 3:28 pm
by munfraid
Yes, of course, sorry!
RBart wrote: Wed Feb 11, 2026 8:42 am
Ok got it.
you mean:
Code: Select all
MessageRequester("You have " + ExamineDesktops() + " active web page")
Can the helpfiles be updated in this way?
Re: SpiderBasic 3.20 is out !
Posted: Thu Mar 19, 2026 2:04 pm
by Quin
All working well on Windows 10/11, thanks Fred!