Hi all,
Recently started using WGET to fetch some files.
Is it possible to call this from a basic program and it mulitask in the background?
Hi all,
Recently started using WGET to fetch some files.
Is it possible to call this from a basic program and it mulitask in the >background?
I have it working without issue from a basic program, it just single tasks >whilst it's downloading. Currently using: -
command$="wget "+webfilepath$+" -O "+scrapfilepath$+wgetoptions$ + " >--show-progress"
SYS"XWimp_StartTask",command$
Added the --show-progress just so I can see it's doing something.
On 11 Jan 2026 as I do recall,
Paul Stewart wrote:
Hi all,
Recently started using WGET to fetch some files.
Is it possible to call this from a basic program and it mulitask in the
background?
You need to launch that sort of thing in a taskwindow if you want it to multitask. But then of course you will need some way to know when it is finished, because if it is multitasking that means that your program
could also be taking other actions (i.e. receiving keypresses or Wimp messages) while wget is busy getting a file via the Web.
!Infozip has a procedure called FNchildtask which launches a task (in
the format "TaskWindow" plus command line options) and returns the task handle as the result of that function.
It then listens out for the WIMP message TaskCloseDown (&400C3) with
that task handle being broadcast, which means that the child task has finished and the application can now act upon its results. You need to
make sure that you have included message &400C3 in the list of
user messages specified during the Wimp_Initialise stage, though, or you
will never receive it. :-)
| Sysop: | Jacob Catayoc |
|---|---|
| Location: | Pasay City, Metro Manila, Philippines |
| Users: | 5 |
| Nodes: | 4 (0 / 4) |
| Uptime: | 119:54:29 |
| Calls: | 125 |
| Calls today: | 125 |
| Files: | 489 |
| D/L today: |
859 files (365M bytes) |
| Messages: | 76,577 |
| Posted today: | 26 |