Search found 5 matches

by Netzvamp
Wed Dec 02, 2015 2:55 pm
Forum: Applications - Feedback and Discussion
Topic: Websocket Client
Replies: 28
Views: 22000

Re: Websocket Client

Hi,

you know thhese threads:
http://www.purebasic.fr/english/viewtopic.php?f=13&t=56873
http://www.purebasic.fr/english/viewtopic.php?f=12&t=61606

Bernd

Yes, i know them. But these are SERVERS, this is an CLIENT who connect to an server. I've developed it, cause i have an external API-Server ...
by Netzvamp
Wed Dec 02, 2015 2:21 pm
Forum: Applications - Feedback and Discussion
Topic: Websocket Client
Replies: 28
Views: 22000

Websocket Client

I've developed an websocket client.

This is not a SERVER , this is a CLIENT who connect to a server.

I've developed it to query an external API/Service running on a websocket-server.

It's not fully tested, and misses some features (look TODO in source), but works with the testserver at echo ...
by Netzvamp
Fri Dec 12, 2014 4:56 pm
Forum: Coding Questions
Topic: [PB 5.31] Debugger Window stops on Input()
Replies: 1
Views: 1116

[PB 5.31] Debugger Window stops on Input()

Hello,

problem is, that i can't view variables, maps, lists etc. in the debugwindow if a program with an console window stops on Input() and is waiting for some input. I have to press Enterkey and then the debugwindow does the next step (show variables) but stops again on an Input(). I know that ...
by Netzvamp
Sun Jun 24, 2012 7:01 pm
Forum: Coding Questions
Topic: FreeGadget and recreate it
Replies: 1
Views: 596

Re: FreeGadget and recreate it

Some minutes later i answered my question by myself ;)

For history and other people 8)

It's about the Gadgetlists. You have to close the Gadgetlist before you free the gadget.

That code works:


OpenWindow(1, 0,0, 1000, 1000, "Title")

Procedure test()
ContainerGadget(1, 15, 60, 770, 370, #PB ...
by Netzvamp
Sun Jun 24, 2012 6:31 pm
Forum: Coding Questions
Topic: FreeGadget and recreate it
Replies: 1
Views: 596

FreeGadget and recreate it

Hi,
i have a problem with the FreeGadget() procedure. If i free a gadget i can't recreate it. Is that a bug or intended?


OpenWindow(1, 0,0, 1000, 1000, "Title")

ScrollAreaGadget(1, 15, 60, 500, 500, 760, 360, 1, #PB_ScrollArea_Raised)
FreeGadget(1)
ScrollAreaGadget(1, 15, 60, 500, 500, 760, 360 ...