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 ...
					Search found 5 matches
- Wed Dec 02, 2015 2:55 pm
 - Forum: Applications - Feedback and Discussion
 - Topic: Websocket Client
 - Replies: 28
 - Views: 23243
 
- Wed Dec 02, 2015 2:21 pm
 - Forum: Applications - Feedback and Discussion
 - Topic: Websocket Client
 - Replies: 28
 - Views: 23243
 
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 ...
					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 ...
- Fri Dec 12, 2014 4:56 pm
 - Forum: Coding Questions
 - Topic: [PB 5.31] Debugger Window stops on Input()
 - Replies: 1
 - Views: 1133
 
[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 ...
					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 ...
- Sun Jun 24, 2012 7:01 pm
 - Forum: Coding Questions
 - Topic: FreeGadget and recreate it
 - Replies: 1
 - Views: 613
 
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 ...
					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 ...
- Sun Jun 24, 2012 6:31 pm
 - Forum: Coding Questions
 - Topic: FreeGadget and recreate it
 - Replies: 1
 - Views: 613
 
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 ...
					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 ...