[Gambas-user] WebForm With httpd
Brought to you by:
gambas
|
From: Mayost S. <sh...@45...> - 2018-01-18 18:14:45
|
Hello gambas: 3.10.0 I want to compile my WebForm And I want to run it with an "HTTPD server" NOT with "gambas embedded HTTP" The reason is that when I run with an "gambas embedded HTTP" If there are "Multiple clients" When a client first clicks a button and it enters the event and executes "SLEEP 30" It stops the all clients For example, if the WebForm displays a "CLOCK" It stops everybody's clients Is there a solution to this problem Export Public Sub WebTimer1_Timer() WebLabel1.Text = Now() End Public Sub WebButton2_Click() Sleep 20 End |