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)
-
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
> '***
> '*
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
> '*
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
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
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&
> >
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
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
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
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
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
-
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
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'
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
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
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
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
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
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
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
> >
> > ---
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
>
> --
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
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
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
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
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
> 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
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
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
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
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
31 matches
Mail list logo