B4A Tutorial Download huge files with HttpUtils2 - Erel    Jul 25, 2021   (18 reactions)   tags: download, erel, download with progress named DownloadService. The purpose of DownloadService is to make it simple to download files of any...Better to use: https://www.b4x.com/android/forum/threads/simple-progress-http-download.127214/#post... this service. Start a download: Sub btnDownload_Click Dim dd As DownloadData dd.url = link1 '<--- download link dd.EventName = "dd" dd.Target = Me CallSubDelayed2(DownloadService, "StartDownload", dd) End Sub Handle the events: Sub dd_Progress(Progress... B4A Question Download files from WebView (local storage) - max123    Jul 10, 2024   (1 reaction) things, the question here is just one, how to download a file from a WebView, how to handle it so when I press on the link the file should download.
Suppose you have a page with download link, how to... B4J Tutorial [Web][SithasoDaisy5] Easy Peasy Lemon Squeezy Excel Report Manager (Read, Update, Download Excel Files) - Mashiane    Sep 24, 2025   (3 reactions) .Initialize report.SheetName = "Sheet1" report.TemplateFile = "./assets...) report.ReportFileName = Main.ProjectName & "_" & Main.TableName & " Fields...(report.execute) You give it your Excel Template file name, the sheet to process, write some content... B4A Example [B4X] Supabase Storage - Download file with Progress - Alexander Stolte    Sep 11, 2023   (8 reactions) / This is a very simple tutorial on how to download a file and show the progress in a progressbar... with larger files. #If B4J Private Sub xlbl_DownloadFile_MouseClicked (EventData As MouseEvent) #Else Private Sub xlbl_DownloadFile_Click #End If xui.SetDataFolder("supabase") Wait For (xSupabase.Storage.DownloadFileProgress("Avatar","test.png",Me,"DownloadProfileImage",xui.DefaultFolder).Execute) Complete (StorageFile As SupabaseStorageFile) If... B4J Question [Solved] Download Files from server with progress - Dadaista    Jan 21, 2021 Hi all
How can I do something like this
https://www.b4x.com/android/forum/threads/download-huge-files-with-httputils2.30220/
from B4J?... B4J Library [BANano] [SithasoJsZIP] Compress & Download Files for your WebApps - Mashiane    Feb 4, 2024   (3 reactions) ) 3. Zip the files and download them. 'compress the files banano.Await(compress.Compress...Hi Fam Assumptions: You have a file input, you fire a change event and trap the selected file(s), you either loop through the files or just process one. This class helps you compress the files and then download them. First, Download JSZIp Then Add it to your project BANano.Header.AddJavascriptFile("jszip.min.js") In your code... 1. Initialize the class 'start a zip file... B4A Tutorial Downloading files using Service module - Erel    Jan 29, 2011   (2 reactions) with services than with activities. In this example we will download an image file with a service and use it for the activity background. This service can be used to download larger files as well... the application is in the background. The steps required for downloading a file with this service is to first set the URL and the target file (the downloaded file is written to this file) and then call... is paused). The service then downloads the file. When download completes the service uses CallSub to... B4i Question I think my app is haunted - downloaded file changes randomly - MikeH    Jul 1, 2025 Dim j As HttpJob
j.Initialize("", Me)
j.Download(URL & "myTextFile... B4i it downloads but will revert to previous versions of the file that have been overwritten on my... B4J Question Download file from Koofr - Robert Valentino    Mar 23, 2025 I asked ChatGPT to give me an example of downloading a file from Koofr in B4J (I will also need to... download
' You need the correct file URL from Koofr
FileUrl = "https://api.koofr.net/v2/files/download?path=%2Fpath%2Fto%2Fyour%2Ffile.txt"
' Define where to save... B4A Question Best way to upload and download files to internet? Simple example? - RB Smissaert    Feb 18, 2025 Have a large amount of data that would be too much to go into the .apk file.
What would be the best way to upload this data (ideally from the phone) and then download it and process it?
The data... Page: 1   2   3   4   5   6   7   |