zed Well-Known Member Licensed User Jun 5, 2021 #1 Hi, In my app's, I would like to display on the screen the size in KB of the data transferred by the user. How to calculate the number of bytes sent and received with the httpjob command. Dim jImg As HttpJob jImg.Initialize("uploadImg", Me) jImg.PostMultipart(....) Dim jTxt As HttpJob jTxt.Initialize("sendTxt", Me) jTxt.download2(....) Can someone help me. Thank you so much
Hi, In my app's, I would like to display on the screen the size in KB of the data transferred by the user. How to calculate the number of bytes sent and received with the httpjob command. Dim jImg As HttpJob jImg.Initialize("uploadImg", Me) jImg.PostMultipart(....) Dim jTxt As HttpJob jTxt.Initialize("sendTxt", Me) jTxt.download2(....) Can someone help me. Thank you so much
Erel B4X founder Staff member Licensed User Longtime User Jun 6, 2021 #2 Please use [code]code here...[/code] tags when posting code. The fact that you set the job name means that you are not using HttpJob correctly. It should always be empty. Upload progress: [B4X] Post multipart requests / file uploads with progress Upvote 0
Please use [code]code here...[/code] tags when posting code. The fact that you set the job name means that you are not using HttpJob correctly. It should always be empty. Upload progress: [B4X] Post multipart requests / file uploads with progress