Re: [Gambas-user] How to download a file?

2012-04-03 Thread Willy Raets
On wo, 2012-04-04 at 01:53 +0200, Willy Raets wrote: > Oh..and you need components: > - gb.net > - gb.net.curl > to make it work... > > Good luck, > > Willy > > On wo, 2012-04-04 at 01:49 +0200, Willy Raets wrote: > > On wo, 2012-04-04 at 00:44 +0200, Willy Raets wrote: > > > Try this: > > > >

Re: [Gambas-user] How to download a file?

2012-04-03 Thread Willy Raets
Oh..and you need components: - gb.net - gb.net.curl to make it work... Good luck, Willy On wo, 2012-04-04 at 01:49 +0200, Willy Raets wrote: > On wo, 2012-04-04 at 00:44 +0200, Willy Raets wrote: > > Try this: > > > > Dim sSourcePath, sCopyPath As String > > sSourcePath = "http://mydomain/test"

Re: [Gambas-user] How to download a file?

2012-04-03 Thread Willy Raets
On wo, 2012-04-04 at 00:44 +0200, Willy Raets wrote: > Try this: > > Dim sSourcePath, sCopyPath As String > sSourcePath = "http://mydomain/test"; > sCopyPath = User.Home & "/Test" > If Not(Exist(sCopyPath) Then >MKDIR sCopyPath > Endif > sCopyPath = sCopyPath & "/test" > If Exist(sCopyPath) Th

Re: [Gambas-user] How to download a file?

2012-04-03 Thread Willy Raets
Try this: Dim sSourcePath, sCopyPath As String sSourcePath = "http://mydomain/test"; sCopyPath = User.Home & "/Test" If Not(Exist(sCopyPath) Then MKDIR sCopyPath Endif sCopyPath = sCopyPath & "/test" If Exist(sCopyPath) Then KILL sCopyPath Endif DownloadFile(sSourcePath) PUBLIC SUB Downloa

Re: [Gambas-user] About Visual Studio Express

2012-04-03 Thread Demosthenes Koptsis
On 04/03/2012 02:02 PM, Bruce Bruen wrote: > It would be good to offer the option to keep a duplicate copy of html > directory as a personal html directory that does not get over written > when new versions of gambas are installed. About this in the past i proposed a feature for Gambas help syste

Re: [Gambas-user] Create an application with root/sudo previlege

2012-04-03 Thread Jose J. Rodriguez
On 3/21/12, sundar_ima wrote: > > I am creating an application which calls bash scripts many time with > sudo/root privilege. Though i can execute bash script with either kdesu or > gksu, it asks password many times. Instead it would be nice if any one help > me on opening an application with sudo

Re: [Gambas-user] About Visual Studio Express

2012-04-03 Thread jm
On Tue, 2012-04-03 at 20:32 +0930, Bruce Bruen wrote: > On Tue, 2012-04-03 at 10:09 +0100, jm wrote: > > On Wed, 2012-03-28 at 15:40 +0300, Demosthenes Koptsis wrote: > > > These days i started to test Visual Studio Express 2010 to compare it > > > with Gambas3. > > > > > > Does anyone have any e

Re: [Gambas-user] Issue 229 in gambas: Creating an installable package for a component with autotools uses wrong directories

2012-04-03 Thread Sebi
No problem, I will try to make a patch based on the diff2 file. I won't have time until tomorrow noon, but I will definitely do it. Thanks for your help -Original Message- From: gam...@googlecode.com Date: Tue, 03 Apr 2012 11:19:38 To: Reply-To: codesite-nore...@google.com, maili

Re: [Gambas-user] Issue 229 in gambas: Creating an installable package for a component with autotools uses wrong directories

2012-04-03 Thread gambas
Comment #4 on issue 229 by adamn...@gmail.com: Creating an installable package for a component with autotools uses wrong directories http://code.google.com/p/gambas/issues/detail?id=229 Good! If you have gone though the history of 143, you'll see that I wasn't too sure of diff2 as, like Benoi

Re: [Gambas-user] About Visual Studio Express

2012-04-03 Thread Bruce Bruen
On Tue, 2012-04-03 at 10:09 +0100, jm wrote: > On Wed, 2012-03-28 at 15:40 +0300, Demosthenes Koptsis wrote: > > These days i started to test Visual Studio Express 2010 to compare it > > with Gambas3. > > > > Does anyone have any experience with VB Studio Express ? > > > > Are there any characte

Re: [Gambas-user] Issue 229 in gambas: Creating an installable package for a component with autotools uses wrong directories

2012-04-03 Thread gambas
Comment #3 on issue 229 by sebi...@gmail.com: Creating an installable package for a component with autotools uses wrong directories http://code.google.com/p/gambas/issues/detail?id=229 I think it is. The diff2 tries to fix the problem, but the creator deleted both the prefix and DESTDIR varia

Re: [Gambas-user] About Visual Studio Express

2012-04-03 Thread jm
On Wed, 2012-03-28 at 15:40 +0300, Demosthenes Koptsis wrote: > These days i started to test Visual Studio Express 2010 to compare it > with Gambas3. > > Does anyone have any experience with VB Studio Express ? > > Are there any characteristics that may be we wanted to see in Gambas3 ? > > Than

Re: [Gambas-user] Issue 229 in gambas: Creating an installable package for a component with autotools uses wrong directories

2012-04-03 Thread gambas
Comment #2 on issue 229 by adamn...@gmail.com: Creating an installable package for a component with autotools uses wrong directories http://code.google.com/p/gambas/issues/detail?id=229 Is this similar/related to issue #143?