Re: [Gambas-user] How to specify a string constant in an Exec statement

2017-12-14 Thread Benoît Minisini
Le 14/12/2017 à 23:05, Jussi Lahtinen a écrit : OK... weird. I wonder if "announcement only" means what it sounds like. https://sourceforge.net/p/forge/documentation/Mailing%20Lists/#making-an-announcements-only-list Jussi Mmmm... Maybe, I will look at it. -- Benoît Minisini --

Re: [Gambas-user] How to specify a string constant in an Exec statement

2017-12-14 Thread Jussi Lahtinen
OK... weird. I wonder if "announcement only" means what it sounds like. https://sourceforge.net/p/forge/documentation/Mailing%20Lists/#making-an-announcements-only-list Jussi On Thu, Dec 14, 2017 at 11:53 PM, Benoît Minisini wrote: > Le 14/12/2017 à 20:10, Jussi Lahtinen a écrit : > >> Disable

Re: [Gambas-user] How to specify a string constant in an Exec statement

2017-12-14 Thread Benoît Minisini
Le 14/12/2017 à 20:10, Jussi Lahtinen a écrit : Disabled how? All the messages seems to be delivered? Why not to actually close this, if it should not be used for some reason? Jussi Apprently it's not possible with SourceForge to disable a mailing-list. If you know how, please tell me. --

Re: [Gambas-user] How to specify a string constant in an Exec statement

2017-12-14 Thread Jussi Lahtinen
Maybe this works? Exec ["get_iplayer", "\".*\"", "--force", "--type=TV"] To sOutput Jussi On Thu, Dec 14, 2017 at 7:33 PM, John Rose wrote: > I want to have a command containing double quotes characters in an Exec > statement: > get-iplayer ".*" --force --type=TV > > My code for the above is:

Re: [Gambas-user] How to specify a string constant in an Exec statement

2017-12-14 Thread Jussi Lahtinen
Disabled how? All the messages seems to be delivered? Why not to actually close this, if it should not be used for some reason? Jussi On Thu, Dec 14, 2017 at 7:49 PM, Benoît Minisini wrote: > Le 14/12/2017 à 18:33, John Rose a écrit : > >> I want to have a command containing double quotes char

Re: [Gambas-user] How to specify a string constant in an Exec statement

2017-12-14 Thread Benoît Minisini
Le 14/12/2017 à 18:33, John Rose a écrit : I want to have a command containing double quotes characters in an Exec statement: get-iplayer ".*" --force --type=TV My code for the above is: Exec ["get_iplayer", "\".*\" --force", "--type=TV] To sOutput where sOutput is a string. However, this does

[Gambas-user] How to specify a string constant in an Exec statement

2017-12-14 Thread John Rose
I want to have a command containing double quotes characters in an Exec statement: get-iplayer ".*" --force --type=TV My code for the above is: Exec ["get_iplayer", "\".*\" --force", "--type=TV] To sOutput where sOutput is a string. However, this does not work. I've tried omitting the 2 lots of