Carlos Pizzi Member Licensed User Longtime User May 19, 2015 #1 ProgressDialog while running a WebService I need a ProgressDialog while running the ws. In my code is not working. What is the correct code? thank you very much B4X: Dim JobWS1, JobWS2 As HttpJob ProgressDialogShow2("Cargando Datos... Espere Por Favor...",False) JobWS2.Initialize("LeerTablaArticulos", Me) JobWS2.Download(WSArticulosDatos) JobWS3.Initialize("LeerTablaClientes", Me) JobWS3.Download(WSClientes) ProgressDialogHide
ProgressDialog while running a WebService I need a ProgressDialog while running the ws. In my code is not working. What is the correct code? thank you very much B4X: Dim JobWS1, JobWS2 As HttpJob ProgressDialogShow2("Cargando Datos... Espere Por Favor...",False) JobWS2.Initialize("LeerTablaArticulos", Me) JobWS2.Download(WSArticulosDatos) JobWS3.Initialize("LeerTablaClientes", Me) JobWS3.Download(WSClientes) ProgressDialogHide
mangojack Expert Licensed User Longtime User May 20, 2015 #2 move ProgressDialogHide to start of Sub JobDone. Last edited: May 20, 2015 Upvote 0