2010/2/11 Vassilis K :
> I 'll use the Gambas Mysql commands to make a table ! it works !
> The reason that I asked you is that the code for creating a Mysql table
> in Gambas is less accurate than the code of python.
no at same...
but the gambas code way allow you to change the database server
wit
Benoit,
using replace, I used gb.case as per docs, gambas bauked, but gb.text does
work as case insensitive replace.
??
Regards
Richard
--
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Pred
> How is this possible ? (to specify the alignment for each cell).
>
Like in the example of the Gridview documentation page.
GridView[X, Y].Alignment = Align.
Or in the Data event if you use it, with the GridView.Data.Alignment property.
--
Benoît Minisini
---
How is this possible ? (to specify the alignment for each cell).
--
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.n
> I tried
>
> .Columns[1].Alignment = Align.Right
>
> AND I get error :
>
> Unknown symbol 'alignment' in class '.GridviewColumn'
>
> I'm using Gambas 2.17
>
Sorry, I made a mistakte: you must specify the alignment for each cell. There
is no alignment for all the column. But it would be poss
I tried
.Columns[1].Alignment = Align.Right
AND I get error :
Unknown symbol 'alignment' in class '.GridviewColumn'
I'm using Gambas 2.17
--
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
P
> Fabien Bodard ha scritto:
> > Le 11 février 2010 15:23, Benoît Minisini
> >
> > a écrit :
> >>> sql = "CREATE TABLE Aplianikis ("
> >>> "aa BIGINT(20) NOT NULL auto_increment,"
> >>> "Eponimia VARCHAR(40) NOT NULL,"
> >>> "AFM VARCHAR(18) NOT NULL,"
> >>> "Hmerom
> Lets say that I want to align the 2nd columns of the following code to
> the right. How is this possible?
>
> WITH GridView1
> .rows.count = 0
> .columns.count = 6
> .Columns[0].Width = 45
> .columns[0].text = "AA"
> .Columns[1].Width = 280
> .columns[1].text = "Name"
>
Lets say that I want to align the 2nd columns of the following code to
the right. How is this possible?
WITH GridView1
.rows.count = 0
.columns.count = 6
.Columns[0].Width = 45
.columns[0].text = "AA"
.Columns[1].Width = 280
.columns[1].text = "Name"
etc..
I have t
I 'll use the Gambas Mysql commands to make a table ! it works !
The reason that I asked you is that the code for creating a Mysql table
in Gambas is less accurate than the code of python.
--
SOLARIS 10 is the OS for Data
Fabien Bodard ha scritto:
> Le 11 février 2010 15:23, Benoît Minisini
> a écrit :
>
>>> sql = "CREATE TABLE Aplianikis ("
>>> "aa BIGINT(20) NOT NULL auto_increment,"
>>> "Eponimia VARCHAR(40) NOT NULL,"
>>> "AFM VARCHAR(18) NOT NULL,"
>>> "Hmerominia DATE NOT N
hum ... 16X16 or 24X24 px ... not really interesting size for a text isn't it ?
2010/2/11 Demosthenes Koptsis :
> you can create an image with written text inside but with accepted
> dimensions for tray.
>
> On Thu, Feb 11, 2010 at 3:25 PM, Fabien Bodard wrote:
>
>> it's in the name ... :/ tray i
Le 11 février 2010 15:23, Benoît Minisini
a écrit :
>> sql = "CREATE TABLE Aplianikis ("
>> "aa BIGINT(20) NOT NULL auto_increment,"
>> "Eponimia VARCHAR(40) NOT NULL,"
>> "AFM VARCHAR(18) NOT NULL,"
>> "Hmerominia DATE NOT NULL,"
>> "Checkbox TINYINT(1) NO
> sql = "CREATE TABLE Aplianikis ("
> "aa BIGINT(20) NOT NULL auto_increment,"
> "Eponimia VARCHAR(40) NOT NULL,"
> "AFM VARCHAR(18) NOT NULL,"
> "Hmerominia DATE NOT NULL,"
> "Checkbox TINYINT(1) NOT NULL,"
> "primary key(aa)"
> ")"
>
sql = "CREATE TABLE Aplianikis ("
"aa BIGINT(20) NOT NULL auto_increment,"
"Eponimia VARCHAR(40) NOT NULL,"
"AFM VARCHAR(18) NOT NULL,"
"Hmerominia DATE NOT NULL,"
"Checkbox TINYINT(1) NOT NULL,"
"primary key(aa)"
")"
"DEFAULT CHARSET
you can create an image with written text inside but with accepted
dimensions for tray.
On Thu, Feb 11, 2010 at 3:25 PM, Fabien Bodard wrote:
> it's in the name ... :/ tray icon ...
>
> you can't set text nor too large icon the system tray don't accept it
>
> 2010/2/11 Toni Rosa :
> > Hi,
> > I'
it's in the name ... :/ tray icon ...
you can't set text nor too large icon the system tray don't accept it
2010/2/11 Toni Rosa :
> Hi,
> I'm using the TrayIcon control in one of my projects and I wondered
> whether it would be possible to add text to it, no just a Pictures.
> (Maybe a TrayText c
Hi,
I'm using the TrayIcon control in one of my projects and I wondered
whether it would be possible to add text to it, no just a Pictures.
(Maybe a TrayText control? )
Regards,
Toni
--
SOLARIS 10 is the OS for Data Ce
I am using python because it executes the table creation commands with
the same type like in terminal mode. For example in python we write:
sql = """CREATE TABLE Aplianikis (
aa BIGINT(20) NOT NULL auto_increment,
Eponimia VARCHAR(40) NOT NULL,
AFM VARCHAR(18) NOT NULL,
Benoît Minisini ha scritto:
>> Hi List,
>>
>> I want to end up with this text to pass to the shell, and it contains
>> quotation marks, I wondered how to do that.
>>
>> wkhtmltopdf *.html /tmp/temp.pdf --toc --header-right "Page [page]"
>> --footer- center "- EasyGP Medical Records -" --footer-spa
Fabien Bodard ha scritto:
>
>>>
>>> I am using the following code for the creation of a table in a Mysql DB:
>>>
>>>
>>> SHELL"python
>>> /home/delphi/Documents/Apodeixi/dimiourgiaTableMYSQLmePython1.py" IF ERROR
>>> THEN
>>> Message.Error(DConv(Error.Text))
>>> ENDIF
>>>
>>> The co
and why are you using python to create your table ???
Le 11 février 2010 12:35, Benoît Minisini
a écrit :
>> Hello again,
>>
>> I am using the following code for the creation of a table in a Mysql DB:
>>
>>
>> SHELL"python
>> /home/delphi/Documents/Apodeixi/dimiourgiaTableMYSQLmePython1.py" IF E
> Hi List,
>
> I want to end up with this text to pass to the shell, and it contains
> quotation marks, I wondered how to do that.
>
> wkhtmltopdf *.html /tmp/temp.pdf --toc --header-right "Page [page]"
> --footer- center "- EasyGP Medical Records -" --footer-spacing 5
> --footer-font-name "com
> Hello again,
>
> I am using the following code for the creation of a table in a Mysql DB:
>
>
> SHELL"python
> /home/delphi/Documents/Apodeixi/dimiourgiaTableMYSQLmePython1.py" IF ERROR
> THEN
> Message.Error(DConv(Error.Text))
> ENDIF
>
> The command works perfectly and it cr
sorry
gambas package are more older on ubuntu
you are using a source compiled version
normally it work
2010/2/11 Fabien Bodard :
> installed from packages ?
>
> have you installed the doc one ?
>
> 2010/2/11 Fiddler63 :
>>
>>
>>
>> Fiddler63 wrote:
>>>
>>> Ubuntu 9.10, 64bit
>>> Gambas 2.19
installed from packages ?
have you installed the doc one ?
2010/2/11 Fiddler63 :
>
>
>
> Fiddler63 wrote:
>>
>> Ubuntu 9.10, 64bit
>> Gambas 2.19
>>
>> F1 does nothing at all
>>
>> Kim
>>
>
> an F2 does not do anything either
> Kim
> --
> View this message in context:
> http://old.nabble.com/Hel
Fiddler63 wrote:
>
> Ubuntu 9.10, 64bit
> Gambas 2.19
>
> F1 does nothing at all
>
> Kim
>
an F2 does not do anything either
Kim
--
View this message in context:
http://old.nabble.com/Help-file-download-and-F1-tp27542391p27544328.html
Sent from the gambas-user mailing list archive at Nab
Ubuntu 9.10, 64bit
Gambas 2.19
F1 does nothing at all
Kim
--
View this message in context:
http://old.nabble.com/Help-file-download-and-F1-tp27542391p27544327.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
Hi List,
I want to end up with this text to pass to the shell, and it contains
quotation marks, I wondered how to do that.
wkhtmltopdf *.html /tmp/temp.pdf --toc --header-right "Page [page]" --footer-
center "- EasyGP Medical Records -" --footer-spacing 5 --footer-font-name
"comic sans ms"
any
Hello again,
I am using the following code for the creation of a table in a Mysql DB:
SHELL"python /home/delphi/Documents/Apodeixi/dimiourgiaTableMYSQLmePython1.py"
IF ERROR THEN
Message.Error(DConv(Error.Text))
ENDIF
The command works perfectly and it creates the table.
30 matches
Mail list logo