Hi Erel,
any suggestion about b4a to b4i for this line of code
thanks
any suggestion about b4a to b4i for this line of code
B4X:
Log("Job completed: " & Job.Success)
Dim Inizio As InputStream
Dim Out As OutputStream
Dim CS As CompressedStreams
lblDownloadProgress1.Text ="Decompressione in corso..."
DoEvents
Inizio = CS.WrapInputStream(Job.GetInputStream, "gzip")
Out = File.OpenOutput(File.DirRootExternal & "/" & Main.directory_programma, Main.nome_file_indirizzo,False )
File.Copy2( Inizio, Out)
Out.Close
Job.Release
lblDownloadProgress1.Text ="Decompressione completata"
DoEvents
thanks