Search found 3 matches

by Beeza
Thursday 30th April 2020 2:27pm
Forum: General
Topic: Media Control Questions
Replies: 1
Views: 3419

Media Control Questions

I have created a simple internet radio application using the Gambas media player control. It displays a list of available station names which are stored in a Sqlite database along with their stream URL. When the user double clicks on the list item the stream URL is retrieved and passed to the media ...
by Beeza
Monday 9th March 2020 5:01pm
Forum: General
Topic: Command Output Redirection
Replies: 3
Views: 4789

Re: Command Output Redirection

Thanks Vuott and Cogier. I never expected the solution to be that simple. Thanks also for the demo code.

I'll monitor this forum regularly in the hope that I can similarly help somebody else out in due course.

Beeza
by Beeza
Monday 9th March 2020 2:35pm
Forum: General
Topic: Command Output Redirection
Replies: 3
Views: 4789

Command Output Redirection

I have an application in which I import Linux system information by piping the output of a Linux command to a file, then reading the contents of the file into my application e.g dim strCommand as String dim strUSBDevices as string dim myFile as File strCommand = "lsusb > usb_devices.txt" s...