|
|
|
|
|
WaitWindowEnd (Function) In french: FenAttenteFin
WaitWindowStart("Downloading the image...")
ThreadExecute("MyThread", threadNormal, procDownloadImage)
INTERNAL PROCEDURE procDownloadImage
IF HTTPRequest("https://www.windev.com/img/visual/21/logo-pcsoft.png") THEN
bufImage is Buffer = HTTPGetResult()
ExecuteMainThread(procUpdImage)
INTERNAL PROCEDURE procUpdImage
IMG_NoName1 = bufImage
END
WaitWindowEnd()
END
END
Remarks - In order for the loading window to be closed, WaitWindowEnd must be called as many times as WaitWindowStart was called.
- WaitWindowStart and WaitWindowEnd can be called from a secondary thread.
Business / UI classification: UI Code Component: wd300android.jar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|