'Blocking = True' doesn't block user interface? (wodHttpDLX)
I do not want that the user can continue working with the interface while the control works, but in my tests the user can move the window, click on buttons, etc. How I can prevent it?
Thanks
Re: 'Blocking = True' doesn't block user
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
Re: 'Blocking = True' doesn't
Thanks Drazen