Search found 131 matches

by Stefan
Sun Nov 17, 2019 8:34 pm
Forum: General Discussion
Topic: SpiderBasic 2.30 is available
Replies: 38
Views: 18994

Re: SpiderBasic 2.30 beta 1 is available

Will all the Linux IDE bugs be fixed now? Unfortunately the Spider IDE is just as useless as the Purebasic IDE.
by Stefan
Tue Sep 03, 2019 5:00 am
Forum: Feature Requests and Wishlists
Topic: Web-Socket-Server
Replies: 0
Views: 2483

Web-Socket-Server

It would be nice to create a web-socket server with Spiderbasic.
it would be nice to be able to write data on the homepage (not temporary).
by Stefan
Mon Sep 02, 2019 1:47 pm
Forum: General Discussion
Topic: These days are like...
Replies: 30
Views: 16273

Re: These days are like...

Where can I download the bugfree version? Is there a beta-version?
by Stefan
Wed Jun 26, 2019 3:48 pm
Forum: Coding Questions
Topic: Reading / open an PDF file
Replies: 0
Views: 1991

Reading / open an PDF file

How can I read / open an PDF file in Spiderbasic? I tried this: Procedure ReadCallback(Status, Filename$, File, Size) If Status = #PB_Status_Loaded Debug Filename$ Debug file ! window.open('V_Filename', '_blank'); ;! window.open(v_filename, '_blank'); ElseIf Status = #PB_Status_Error Debug "Err...
by Stefan
Sun Apr 21, 2019 6:34 am
Forum: Coding Questions
Topic: Mouselocate() doesn't work
Replies: 1
Views: 1451

Mouselocate() doesn't work

Code: Select all

OpenWindow(0,10,10,800,600,"Test",#PB_Window_Normal)
ExamineMouse()
MouseLocate(10,10)
Mouse doesn't move. What do I wrong?
by Stefan
Thu Feb 28, 2019 8:55 pm
Forum: Coding Questions
Topic: The data transmission of long strings takes a long time
Replies: 9
Views: 2863

Re: The data transmission of long strings takes a long time

Has anyone found a solution or recognized what the problem can be?
by Stefan
Thu Feb 07, 2019 8:15 am
Forum: General Discussion
Topic: SpiderBasic 2.21 is available !
Replies: 20
Views: 18242

Re: SpiderBasic 2.21 is available !

Thank you very much, Fred!
by Stefan
Tue Jan 29, 2019 9:34 am
Forum: Coding Questions
Topic: IDE crashes if I use the arrow keys
Replies: 5
Views: 2240

Re: IDE crashes if I use the arrow keys

What a luck for Peter.
Spider and Pure works good with WINE HQ, so I guess it is really a Linux-IDE-Problem.
by Stefan
Tue Jan 29, 2019 12:08 am
Forum: Coding Questions
Topic: IDE crashes if I use the arrow keys
Replies: 5
Views: 2240

Re: IDE crashes if I use the arrow keys

The problem is with Spider and Purebasic. The problem has long been known and is discussed again and again in forums. I've never been able to remove the REM (with the DEL key) or use the arrow keys. It really is not a NEW problem. Tested with many Linux distributions and some PCs. For explanation: C...
by Stefan
Mon Jan 28, 2019 4:29 pm
Forum: Coding Questions
Topic: The data transmission of long strings takes a long time
Replies: 9
Views: 2863

Re: The data transmission of long strings takes a long time

Next try: ;) EnableExplicit Declare initWebSocket(wsuri.s) Declare checkMessage(aString.s) Declare onOpen(evt) Declare onError(evt) Declare onMessage(evt) Declare onClose(evt) Declare doSend(aString.s) Declare sende(aStr.s) Structure Chat_Message Type.s Author.s Message.s Timestamp.q EndStructure St...