I’ve noticed that simply placing a ";" at the beginning of lines starting with "gruppe"—thereby deactivating them—isn't enough.
My program still won't start.
I actually have to delete them all.
Could it have something to do with the number of procedures?
Does my program perhaps have too many ...
Search found 227 matches
- Fri Aug 21, 2026 6:05 am
- Forum: Bugs Reports
- Topic: [Done] Spider 4 beta 2
- Replies: 13
- Views: 620
- Thu Aug 20, 2026 1:53 pm
- Forum: Bugs Reports
- Topic: [Done] Spider 4 beta 2
- Replies: 13
- Views: 620
Re: Spider 4 beta 2
Hi Fred, I’ve removed all my procedures that contain the word "gruppe".
It works now.
So, it must be one of those functions.
It works now.
So, it must be one of those functions.
- Thu Aug 20, 2026 5:50 am
- Forum: Bugs Reports
- Topic: [Done] Spider 4 beta 2
- Replies: 13
- Views: 620
Re: Spider 4 beta 2
I've uploaded it for you.
- Mon Aug 17, 2026 9:46 am
- Forum: Bugs Reports
- Topic: [Done] Spider 4 beta 2
- Replies: 13
- Views: 620
Re: Spider 4 beta 2
Perhaps the following will help you:
I created an include file with 4 procedures.
These don't actually have to contain anything.
My program does NOT work if I have 4 procedures in the include file.
My program works if I have 3 or fewer procedures in the include file.
Declare tt1()
Declare ...
I created an include file with 4 procedures.
These don't actually have to contain anything.
My program does NOT work if I have 4 procedures in the include file.
My program works if I have 3 or fewer procedures in the include file.
Declare tt1()
Declare ...
- Mon Aug 17, 2026 8:53 am
- Forum: Bugs Reports
- Topic: [Done] Spider 4 beta 2
- Replies: 13
- Views: 620
Re: Spider 4 beta 2
I'm afraid I don't quite understand what you mean. Are you suggesting I add the include file back in and then edit my source code until it works with the include file?
My source code has over 60,000 lines!
Where am I supposed to even begin?
But since the code works with beta1 but not with beta2 ...
My source code has over 60,000 lines!
Where am I supposed to even begin?
But since the code works with beta1 but not with beta2 ...
- Sat Aug 15, 2026 9:39 am
- Forum: Bugs Reports
- Topic: [Done] Spider 4 beta 2
- Replies: 13
- Views: 620
Re: Spider 4 beta 2
Do you mean the XInclude file?
DeclareModule ListIconGadgetEx
EnableExplicit
Declare SetRowHeight(ListIconGadget, RowHeight)
Declare BindCellClick(ListIconGadget, Callback)
Declare SetEvenRowColor(ListIconGadget, RowColor.s, SelectedRowColor.s, TextColor.s, SelectedTextColor.s ...
DeclareModule ListIconGadgetEx
EnableExplicit
Declare SetRowHeight(ListIconGadget, RowHeight)
Declare BindCellClick(ListIconGadget, Callback)
Declare SetEvenRowColor(ListIconGadget, RowColor.s, SelectedRowColor.s, TextColor.s, SelectedTextColor.s ...
- Fri Aug 14, 2026 3:10 pm
- Forum: Bugs Reports
- Topic: [Done] Spider 4 beta 2
- Replies: 13
- Views: 620
Re: Spider 4 beta 2
I tried it on Windows 10 and Linux Mint. New folders for SpiderBasic were created.
I removed all XIncludeFile files. Now it seems to be working.
I removed all XIncludeFile files. Now it seems to be working.
- Fri Aug 14, 2026 2:09 pm
- Forum: Bugs Reports
- Topic: [Done] Spider 4 beta 2
- Replies: 13
- Views: 620
[Done] Spider 4 beta 2
It would be good to know what was changed in Beta 2. My program doesn't run in Beta 2, whereas it did in Beta 1. However, I don't get an error message because the debugger doesn't even launch. Unfortunately, I can't post the code here because it's too large.
At first glance, the program works ...
At first glance, the program works ...
- Mon Jan 19, 2026 8:45 am
- Forum: Bugs Reports
- Topic: [Done] Createimage Spiderbasic 3.20
- Replies: 5
- Views: 18509
Re: Createimage Spiderbasic 3.20
That's very unfortunate, but thank you very much for the temporary solution.Use RGBA (The documentation states that RGB works, but apparently it does not)
- Sun Jan 18, 2026 8:31 am
- Forum: Bugs Reports
- Topic: [Done] Createimage Spiderbasic 3.20
- Replies: 5
- Views: 18509
[Done] Createimage Spiderbasic 3.20
This code works perfectly with SpiderBasic 3.10, but not with Spider320.
What's the reason for this?
What's the reason for this?
Code: Select all
OpenWindow(1,0,0,800,600,"Image")
image=CreateImage(#PB_Any,200,200,32,RGB(200,0,0))
gadget=ImageGadget(#PB_Any,10,10,ImageWidth(image),ImageHeight(image),ImageID(image))