Re: [Gambas-user] A web page for Gambas applications

2009-08-10 Thread abdurrahman ulusoy
hii translate to english kedicad site http://cadcizim.googlepages.com/kedicadenglish(i hope people can understand. :) )but software i cant. because in gambas Project/translate then error"For Turkish translate file can not read.File already exists"(error message is  in Turkish. but like this)  -

Re: [Gambas-user] Combobox returns item and item_key

2009-08-10 Thread Doriano Blengino
Hugo Chillon ha scritto: > For people who looks for a combobox to show items from a database table > column but need combobox returns item_key from another column, this is a > class for them: > > ' Gambas class file > '*** > '*

Re: [Gambas-user] Combobox returns item and item_key

2009-08-10 Thread richard terry
On Tue, 11 Aug 2009 12:49:10 pm Hugo Chillon wrote: > For people who looks for a combobox to show items from a database table > column but need combobox returns item_key from another column, this is a > class for them: > > ' Gambas class file > '*

Re: [Gambas-user] can't change colour in a DataControl - oops & huh?

2009-08-10 Thread Jean-Yves F. Barbier
Charlie Reinl a écrit : > Am Montag, den 10.08.2009, 17:24 +0200 schrieb Jean-Yves F. Barbier: >> Jean-Yves F. Barbier a écrit : >>> Hi list, >>> >>> Under a Databrowser, I've got some DataControls I'd like to change >>> background's color. >>> >>> However, it don't work at all: >>> dtc_label.Bac

[Gambas-user] Combobox returns item and item_key

2009-08-10 Thread Hugo Chillon
For people who looks for a combobox to show items from a database table column but need combobox returns item_key from another column, this is a class for them: ' Gambas class file '*** '* ComboBoxPlus class '* '* Autor: Hug

Re: [Gambas-user] can't change colour in a DataControl - oops & huh?

2009-08-10 Thread Charlie Reinl
Am Montag, den 10.08.2009, 17:24 +0200 schrieb Jean-Yves F. Barbier: > Jean-Yves F. Barbier a écrit : > > Hi list, > > > > Under a Databrowser, I've got some DataControls I'd like to change > > background's color. > > > > However, it don't work at all: > > dtc_label.Background = &H00FF00& > >

Re: [Gambas-user] File dialog question ?can one multi-select

2009-08-10 Thread werner 007
Maybe i can help you with a example how i use it in a Project. I use TRY because the user can toggle between Multi- and Single- select TRY fcRoot = File.Dir(fcDialog.SelectedPaths[0]) IF error = 0 then FOR i = 0 TO fcDialog.SelectedPaths.Count - 1 ' loop trough filelist doSome

Re: [Gambas-user] File dialog question ?can one multi-select

2009-08-10 Thread Stefano Palmeri
Il lunedì 10 agosto 2009 12:50:07 richard terry ha scritto: > I want to popup a file dialog and multi-select files and return these say > in a collection, but can't see any way to do this. > > My code looks like this at present, and allows 1 file: > > Dialog.Title = "Select Image File" > Dialog.Fil

Re: [Gambas-user] can't change colour in a DataControl - oops & huh?

2009-08-10 Thread Jean-Yves F. Barbier
Jean-Yves F. Barbier a écrit : > Hi list, > > Under a Databrowser, I've got some DataControls I'd like to change > background's color. > > However, it don't work at all: > dtc_label.Background = &H00FF00& > or dtc_label.Background = &HFF00& > don't change anything (and trying to escape th

Re: [Gambas-user] Gambas in Science ?

2009-08-10 Thread Jean-Yves F. Barbier
Nick Rathke a écrit : ... >> May be it is not the right way to consider it, AFAIK these have also command >> line >> possibilities, so may be writing a nice GUI with Gambas and call/retrieve >> with it >> is the solution - > True to some degree. They are all also c/c++ libraries with proper > AP

[Gambas-user] can't change colour in a DataControl

2009-08-10 Thread Jean-Yves F. Barbier
Hi list, Under a Databrowser, I've got some DataControls I'd like to change background's color. However, it don't work at all: dtc_label.Background = &H00FF00& or dtc_label.Background = &HFF00& don't change anything (and trying to escape the '&' gives me an error: "unexpected '\'") JY -

Re: [Gambas-user] Gambas in Science ?

2009-08-10 Thread Nick Rathke
Jean-Yves F. Barbier wrote: > Nick Rathke a écrit : > >> Hi Gambas users, >> >> I was wondering if any one is using Gambas for Science related work ? >> > > No, I tried to rule the world through Gambas, but it didn't worked (yet:) > > >> Would Gambas modules fo OpenMPI, OpenMP, CUDA be

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread Rob
On Monday 10 August 2009 09:58 am, richard terry wrote: > > But if both pictures are guaranteed to be the same size, something as > > simple as converting each one to text-based PPM format and using diff > > should be sufficient. > > thanks, but whats a PPM format? (sorry I'm image illiterate) It'

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread richard terry
On Mon, 10 Aug 2009 11:38:02 pm Rob wrote: > On Monday 10 August 2009 08:42 am, Doriano Blengino wrote: > > There is a program called GQView (and probably others) which have > > algorithms to compare two images in the right way - ie scale them to > > same size, compress colors and normalize them, t

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread Rob
On Monday 10 August 2009 08:42 am, Doriano Blengino wrote: > There is a program called GQView (and probably others) which have > algorithms to compare two images in the right way - ie scale them to > same size, compress colors and normalize them, then compare pixel by > pixel using a good tolerance

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread Werner
richard terry wrote: > On Mon, 10 Aug 2009 10:15:20 pm Werner wrote: > >> richard terry wrote: >> >>> Hi all, >>> >>> i wondered if anyone could tell me how to comparea picture1 to picture 2 >>> and tell if they were different (ie one had been changed in some way? >>> >>> thanks in anticipa

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread Doriano Blengino
richard terry ha scritto: > Hi all, > > i wondered if anyone could tell me how to comparea picture1 to picture 2 and > tell if they were different (ie one had been changed in some way? > This is very difficult, if your images are slightly different but a human would say they are the same. I e

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread Jean-Yves F. Barbier
richard terry a écrit : > Hi all, > > i wondered if anyone could tell me how to comparea picture1 to picture 2 and > tell if they were different (ie one had been changed in some way? The fastest way is to use cmp (comes from 'diff' package): cmp pic1 pic2 and test the returned value -- Do wha

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread Jean-Yves F. Barbier
richard berry a écrit : ... > good idea, I'll try that. > > I'm just writing my skin excision module and I've set it up so that I can > load > a photo-graph into the drawing editor and add lines etc, or shapes to outline > the exicision, but want to be able to know if there were actually any

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread richard terry
On Mon, 10 Aug 2009 10:15:20 pm Werner wrote: > richard terry wrote: > > Hi all, > > > > i wondered if anyone could tell me how to comparea picture1 to picture 2 > > and tell if they were different (ie one had been changed in some way? > > > > thanks in anticipation. > > > > Richard > > > > ---

Re: [Gambas-user] Comparing 2 pictures

2009-08-10 Thread Werner
richard terry wrote: > Hi all, > > i wondered if anyone could tell me how to comparea picture1 to picture 2 and > tell if they were different (ie one had been changed in some way? > > thanks in anticipation. > > Richard > > --

Re: [Gambas-user] Compiling Gambas 3 svn on Ubuntu

2009-08-10 Thread Nick Rathke
Not to worry. I got Gambas(svn) to compile over the the weekend on Ubuntu 9.04 x86_64 with no more issues using libtool 1.5-26 Thanks for the feed back. -Nick Ricardo Díaz Martín wrote: > Excuse me Nick, now it's no possible because now the server is in production > and it's no possible to dow

[Gambas-user] Comparing 2 pictures

2009-08-10 Thread richard terry
Hi all, i wondered if anyone could tell me how to comparea picture1 to picture 2 and tell if they were different (ie one had been changed in some way? thanks in anticipation. Richard -- Let Crystal Reports handle the r

[Gambas-user] File dialog question ?can one multi-select

2009-08-10 Thread richard terry
I want to popup a file dialog and multi-select files and return these say in a collection, but can't see any way to do this. My code looks like this at present, and allows 1 file: Dialog.Title = "Select Image File" Dialog.Filter = ["*.png", "Image Files", "*", "All files"] If Dialog.OpenFile

Re: [Gambas-user] glut

2009-08-10 Thread abdurrahman ulusoy
Thank you . i'm  wating. --- 10/08/09 Pzt tarihinde Laurent Carlier şöyle yazıyor: Kimden: Laurent Carlier Konu: Re: [Gambas-user] glut Kime: "mailing list for gambas users" Tarihi: 10 Ağustos 2009 Pazartesi, 10:24 Le dimanche 09 août 2009 22:12:42 abdurrahman ulusoy, vous avez écrit : > i kn

Re: [Gambas-user] COPY does not always copy chgrp and chown

2009-08-10 Thread Rolf-Werner Eilert
Benoît Minisini schrieb: >> Benoît Minisini schrieb: Just found this (Gambas 2 project) when copying several students from one class into another. For each student, there are about 6 files to be copied from one directory into another. The first one will always get standard chgrp

Re: [Gambas-user] COPY does not always copy chgrp and chown

2009-08-10 Thread Benoît Minisini
> Benoît Minisini schrieb: > >> Just found this (Gambas 2 project) when copying several students from > >> one class into another. For each student, there are about 6 files to be > >> copied from one directory into another. The first one will always get > >> standard chgrp and chown of the applicat

[Gambas-user] qt4 and form.controls

2009-08-10 Thread nero
hi , I'm trying some of my code on gambas3 to be ready when it's done. I've some problem with form controls using qt4 , i've a form with n controls and want to enumerate them . I'm using somethink like: Public Sub Button1_Click() Dim ch As Obj

Re: [Gambas-user] COPY does not always copy chgrp and chown

2009-08-10 Thread Rolf-Werner Eilert
Benoît Minisini schrieb: >> Just found this (Gambas 2 project) when copying several students from >> one class into another. For each student, there are about 6 files to be >> copied from one directory into another. The first one will always get >> standard chgrp and chown of the application's user

Re: [Gambas-user] glut

2009-08-10 Thread Laurent Carlier
Le dimanche 09 août 2009 22:12:42 abdurrahman ulusoy, vous avez écrit : > i know this docs. i dont know C and docs. examaples and description for C > code. so i cant use in gambas. > Selection and picking code is missing from opengl component, so currently i'm adding them. After i will too port

Re: [Gambas-user] Compiling Gambas 3 svn on Ubuntu

2009-08-10 Thread Ricardo Díaz Martín
Excuse me Nick, now it's no possible because now the server is in production and it's no possible to downgrade again libtool (at the end I decided to install pakage from ubuntu repositories). Server was a 32 bit PC with Ubuntu 9.04 and I was trying to install gambas 2.15 At the next installation