Re: [Gambas-user] Gambas 3.5.1 in Debian Testing (Jessie) official repository

2013-12-22 Thread Gianni Piccini
On 22/12/2013 10:39, Kende Krisztián wrote:

  gb.geom component doesn't exist in any of the packages.

In order to have Gambas 3.5.1 running on my Debian amd64 (the bug is 
filed in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731487), I 
walk this way: obviously I think that the problem is gb.geom.so absence 
after install.

1) Got from Kendek's ppa :-)  the package
gambas3-runtime_3.5.1-0trusty1_amd64.deb

2) Unpacked the package

3) Moved the file gb.geom.so.0.0.0 as root in /usr/bin/lib/gambas3

4) Done two symlinks in this directory:

root@debserv:/usr/lib/gambas3# ln -s gb.geom.so.0.0.0 gb.geom.so
root@debserv:/usr/lib/gambas3# ln -s gb.geom.so.0.0.0 gb.geom.so.0


--
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET,  PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349831iu=/4140/ostg.clktrk
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Debian unstable

2013-12-06 Thread Gianni Piccini
:-

Finally I can see 3.5.1

:-

me@debserv:~$ gambas3

** Oops! Internal error! **
** Cannot find interface of library 'gb.geom'
ERROR: #27: Cannot load component 'gb.geom': cannot find component
** Program aborting. Sorry! :-(
** Please send a bug report at gam...@users.sourceforge.net


Any ideas? I'm running a mixed Debian amd64 testing/sid, with Lxde and 
kernel 3.11.8-1...


--
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631iu=/4140/ostg.clktrk
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Complex Extra Dependency

2013-02-14 Thread Gianni Piccini
On 14/02/2013 19:07, Benoît Minisini wrote:

 Normally, when a package is installed,
 only the needed dependencies are installed, not the recommended
 packages. Or am I wrong?

Not sure of how it works in details, but I think it's wrong, at least in 
most cases, with apt-get. I remember discussions when the new work mode 
became standard also in Debian.
In apt.conf file, for example, to reduce installed packages, you can 
also put a setting:

APT::Install-Recommends false;

--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Small problem with .insert

2012-12-09 Thread Gianni Piccini
I would to put in an array lists of some kinds of files. Code is similar 
to following lines, prints are there to check what's happening.. 
question is, there is any way to use insert  and read those hidden 
files? This, on Gambas 3.1.1 and Debian.

dim files as string[]

files = RDir(directory, *.html, gb.file)
print files.length
' prints 12250, correct

files.Insert(RDir(directory, *.css, gb.file))
print files.length
'prints 12255, 5 new files added, correct

files.Insert(RDir(directory, robots.txt, gb.file))
print files.length
' prints 12256, one new file, correct

files.Insert(RDir(directory, .ht*, gb.file))
print files.length
' prints 12256, but there were two files to add

files.Insert(RDir(directory, .htaccess, gb.file))
print files.length
' prints 12256, but there was one file to add

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Small problem with .insert

2012-12-09 Thread Gianni Piccini
I would to put in an array lists of some kinds of files. Code is similar 
to following lines, prints are there to check what's happening.. 
question is, there is any way to use insert  and read those hidden 
files? This, on Gambas 3.1.1 and Debian.

dim files as string[]

files = RDir(directory, *.html, gb.file)
print files.length
' prints 12250, correct

files.Insert(RDir(directory, *.css, gb.file))
print files.length
'prints 12255, 5 new files added, correct

files.Insert(RDir(directory, robots.txt, gb.file))
print files.length
' prints 12256, one new file, correct

files.Insert(RDir(directory, .ht*, gb.file))
print files.length
' prints 12256, but there were two files to add

files.Insert(RDir(directory, .htaccess, gb.file))
print files.length
' prints 12256, but there was one file to add

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Small problem with .insert

2012-12-09 Thread Gianni Piccini
On 09/12/2012 21:25, Benoît Minisini wrote:

 I don't know... There is no reason why RDir() should not see a file.
 Except maybe if you don't have the rights to read the .ht* files?

Rights are correct: and, at the same time, if I write

files = RDir(directory, *.*, gb.file)

I've the correct number of files in the array. Not so important for me - 
I've done the thing in another way, and Gambas version is not too recent 
- but I know that code works as expected for some friends.

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] My first rodeo in using the network component

2009-03-25 Thread Gianni Piccini
On Tue, 24 Mar 2009 15:49:15 -0500 M0E.lnx m0e@gmail.com wrote:

 and since it's anon access, I figured I'd leave the user and pass
 properties empty.

Sure? If I don't err, you should put anonymous as user and your email
(or fake email) for password...

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Latest Gambas packages for Ubuntu - Broken?

2008-11-12 Thread Gianni Piccini
On Tue, 11 Nov 2008 02:31:28 -0800 (PST) MaxVK [EMAIL PROTECTED]
wrote:

 Firstly, Gianni: What does apt-get pinning mean?

With apt-get, you can add a repository for the next version of your
distro, and use it only for some applications. I've not Ubuntu but
Debian, but it's similar, except for names (we are using stable,
unstable instead of intrepid etc etc).

If I want to use testing, but I want appxxx to be from unstable, I
can edit /etc/apt/preferences like this:

Package: appxxx*
Pin: release a=unstable
Pin-Priority: 950

Package: *
Pin: release a=testing
Pin-Priority: 900

And so apt-get will get all apps from testing, except appxxx, from
testing, and appxxx from unstable. Look for a how-to, I'm using memory
due on this pc I've not this file to check, and probably you'll have to
change unstable and testing with intrepid, hoary or what else.

Obviously, to upgrade appxxx, with Synaptic you can still choose
preferred version for all, and force version for appxxx, after you've
added repositories.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Listview (simple?) problem

2008-09-18 Thread Gianni Piccini
On 18/09/2008 Fabien Bodard wrote:

 Easy no ? but you need to store the value of the deleted row for the 
 move.

That's another way, but I should test if it make difficulties when trying to 
swap item 0 with the previous :-)
I think that (for my use, a small list of different items) the best thing is 
to build an array when selecting an item and check what position has the 
selected item text: with this, I can enable or disable appropriate buttons.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Listview (simple?) problem

2008-09-17 Thread Gianni Piccini
On 15/09/2008 Doriano Blengino wrote:

 Look with great attention at the help page for Listview, inside 
 gb.qt. 

Mmmh, certainly it's not a problem of docs, but a fault of mine trying to 
understand how Gambas works, I can't find it. I was thinking that this 
should be a property like listview.name.current.nameofproperty, but probably 
I'm going in the bad direction.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Listview (simple?) problem

2008-09-17 Thread Gianni Piccini
On 17/09/2008 Doriano Blengino wrote:

 I am not really the right person to answer to you;

Thanks. My error was to want to use same VB syntax, now I load all items in 
an array and then I can work with it.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user