C Cor Active Member Licensed User Longtime User Nov 19, 2010 #1 dim myfile as outputstream myfile cannot be initialized gives error myfile need initialization wwwRes.GetAsynchronously("GetFile",myfile,True,10) What am I doing wrong? grCor
dim myfile as outputstream myfile cannot be initialized gives error myfile need initialization wwwRes.GetAsynchronously("GetFile",myfile,True,10) What am I doing wrong? grCor
Erel B4X founder Staff member Licensed User Longtime User Nov 20, 2010 #2 Ouputstream object can hold all kinds of output streams. In your case you need to use File.Open to open an output stream that writes to a file. B4X: Dim out As OutputStream out = File.Open(...)
Ouputstream object can hold all kinds of output streams. In your case you need to use File.Open to open an output stream that writes to a file. B4X: Dim out As OutputStream out = File.Open(...)