Re: 'Blocking = True' doesn't block user (General questions)
Hi Paco,
Here is example how you can disable all form until server returns some result:
Set wodHttp1 = New wodHttpDLXCom
wodHttp1.Blocking = True
wodHttp1.HostName = www.weonlydo.com
Form1.Enabled = False
wodHttp1.Get /
Debug.Print wodHttp1.Response.Body
Form1.Enabled = True
I used debug mode for this example.In example form is disabled until Debug.Print command is executed.
You can try in your code something like this.
Hope i helped.
Regards,
Drazen
Complete thread:
- 'Blocking = True' doesn't block user interface? - Paco, 2006-01-29, 22:59
- Re: 'Blocking = True' doesn't block user - wodDrazen, 2006-01-30, 00:50
- Re: 'Blocking = True' doesn't - Paco, 2006-01-30, 10:12
- Re: 'Blocking = True' doesn't block user - wodDrazen, 2006-01-30, 00:50