https://youtu.be/Iu7dCX2qfqk
https://windevdesenvolvimento.blogspot.com/2019/03/dicas-2049-windev-mobile-aula-110.html
// BTN_WAITWINDOWSSTART WaitWindowStart("Baixando uma Imagen") ThreadExecute("MinhaThread",threadNormal,procedure_baixa_imagen) INTERNAL PROCEDURE procedure_baixa_imagen() IF HTTPRequest("http://www.matosinformatica.com.br/Arquivos/amarildo.png") THEN bufFer_imagen is Buffer=HTTPGetResult() ExecuteMainThread(procedureBxIm) INTERNAL PROCEDURE procedureBxIm() IMG_IMAGEN= bufFer_imagen END WaitWindowEnd() END END |