Re: gtkmm-list Digest, Vol 58, Issue 18



Thank you Hub, is solution my problem.

El mié, 11-02-2009 a las 12:00 +0000, gtkmm-list-request gnome org
escribió:
> Send gtkmm-list mailing list submissions to
> 	gtkmm-list gnome org
> 
> To subscribe or unsubscribe via the World Wide Web, visit
> 	http://mail.gnome.org/mailman/listinfo/gtkmm-list
> or, via email, send a message with subject or body 'help' to
> 	gtkmm-list-request gnome org
> 
> You can reach the person managing the list at
> 	gtkmm-list-owner gnome org
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of gtkmm-list digest..."
> 
> 
> Today's Topics:
> 
>    1. mdb files full insert/select (Rajko)
>    2. Re: mdb files full insert/select (Jos? Alburquerque)
>    3. help with "HelloWorld" (Ronald Amado Gilio Lucana)
>    4. Re: help with "HelloWorld" (Hubert Figuiere)
>    5. Wheelbarrow example with Gtkmm on DirectFB (Phoenix Revived)
>    6. How to hide a cursor inside a SpinButton? (Dimitri Holz)
>    7. Re: help with "HelloWorld" (Pedro Sousa)
> 
> 
> ----------------------------------------------------------------------
> 
> Message: 1
> Date: Tue, 10 Feb 2009 14:29:19 -0800 (PST)
> From: Rajko <drajkod yahoo com>
> Subject: mdb files full insert/select
> To: gtkmm-list gnome org
> Message-ID: <693687 60178 qm web32801 mail mud yahoo com>
> Content-Type: text/plain; charset=us-ascii
> 
> Hello.I have 2 questions?. 
> 1) Can I have full insert/select access to .mdb files on Windows with gtkmm? I have existing app which uses Microsoft access database and it's  not mine,so i want to write small app that will do something additional on the same database, but I need to know if it can.
> 2) Is there any other libraries that can do that?
> 
> Thanks in advance.
> 
> 
>       
> 
> 
> ------------------------------
> 
> Message: 2
> Date: Tue, 10 Feb 2009 17:45:22 -0500
> From: Jos? Alburquerque <jaalburquerque cox net>
> Subject: Re: mdb files full insert/select
> To: drajkod yahoo com
> Cc: gtkmm-list gnome org
> Message-ID: <49920382 1080901 cox net>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> Rajko said the following:
> > Hello.I have 2 questions?. 
> > 1) Can I have full insert/select access to .mdb files on Windows with gtkmm? I have existing app which uses Microsoft access database and it's  not mine,so i want to write small app that will do something additional on the same database, but I need to know if it can.
> > 2) Is there any other libraries that can do that?
> >
> > Thanks in advance.
> >   
> 
> Maybe libgdamm (which wraps libgda)?
> 
> >
> >       
> > _______________________________________________
> > gtkmm-list mailing list
> > gtkmm-list gnome org
> > http://mail.gnome.org/mailman/listinfo/gtkmm-list
> >
> >   
> 
> 
> -- 
> Jos? Alburquerque
> jaalburquerque cox net
> 
> 
> 
> ------------------------------
> 
> Message: 3
> Date: Tue, 10 Feb 2009 20:42:28 -0500
> From: Ronald Amado Gilio Lucana <rony 88 18 gmail com>
> Subject: help with "HelloWorld"
> To: gtkmm-list gnome org
> Message-ID: <1234316548 7318 14 camel HOUSEGL>
> Content-Type: text/plain; charset="UTF-8"
> 
> Hi, when use:
> g++ main.cc | helloworld.cc | -o main  `pkg-config gtkmm-2.4 --libs
> --cflags`
> 
> in the example "HelloWorld", as suggested Pedro Sousa, the compiler was:
> 
> linux linux:~/programacion/gtkmm/ejemplo1$ g++ main.cc | helloworld.cc |
> -o main  `pkg-config gtkmm-2.4 --libs --cflags`
> main.cc:1:23: error: gtkmm/main.h: No existe el fichero ? directorio
> En el archivo inclu?do de main.cc:2:
> helloworld.h:3:25: error: gtkmm/button.h: No existe el fichero ?
> directorio
> helloworld.h:4:25: error: gtkmm/window.h: No existe el fichero ?
> directorio
> In file included from main.cc:2:
> helloworld.h:6: error: ?Gtk? no se ha declarado
> helloworld.h:6: error: expected `{' before ?Window?
> helloworld.h:6: error: la definici?n de la funci?n no declara par?metros
> main.cc: In function ?int main(int, char**)?:
> main.cc:6: error: ?Gtk? no se ha declarado
> main.cc:6: error: expected `;' before ?kit?
> main.cc:8: error: el agregado ?HelloWorld helloworld? tiene un tipo
> incompleto y no se puede definir
> main.cc:10: error: ?Gtk? no se ha declarado
> bash: helloworld.cc: orden no encontrada
> bash: -o: orden no encontrada
> 
> I not understand, please help me.
> 
> 
> 
> ------------------------------
> 
> Message: 4
> Date: Tue, 10 Feb 2009 21:00:33 -0500
> From: Hubert Figuiere <hub figuiere net>
> Subject: Re: help with "HelloWorld"
> To: Ronald Amado Gilio Lucana <rony 88 18 gmail com>
> Cc: gtkmm-list gnome org
> Message-ID: <49923141 4090608 figuiere net>
> Content-Type: text/plain; charset=UTF-8
> 
> Ronald Amado Gilio Lucana wrote:
> > Hi, when use:
> > g++ main.cc | helloworld.cc | -o main  `pkg-config gtkmm-2.4 --libs
> > --cflags`
> > 
> > in the example "HelloWorld", as suggested Pedro Sousa, the compiler was:
> > 
> > linux linux:~/programacion/gtkmm/ejemplo1$ g++ main.cc | helloworld.cc |
> > -o main  `pkg-config gtkmm-2.4 --libs --cflags`
> 
> Remove the '|' I don't know why Pedro did put them in the example, but
> that's just wrong.
> 
> Like:
>  g++ main.cc helloworld.cc -o main  `pkg-config gtkmm-2.4 --libs --cflags`
> 
> Hub
> 
> 
> ------------------------------
> 
> Message: 5
> Date: Tue, 10 Feb 2009 18:29:15 -0800 (PST)
> From: Phoenix Revived <phoenixrevived yahoo com>
> Subject: Wheelbarrow example with Gtkmm on DirectFB
> To: gtkmm-list gnome org
> Message-ID: <972589 56795 qm web110515 mail gq1 yahoo com>
> Content-Type: text/plain; charset=us-ascii
> 
> Hi,
> 
> I want to draw some irregular windows (i.e. non-rectangular). I tried compiling the Wheelbarrow example in this setup, but it comes up with a white rectangular background behind the wheelbarrow. I had understood that the masking trick used there would have got me the result I wanted. What am I missing (note this is on DirectFB not on X11).
> 
> Thanks for any help!
> 
> 
> 
>       
> 
> 
> ------------------------------
> 
> Message: 6
> Date: Wed, 11 Feb 2009 11:01:31 +0100
> From: Dimitri Holz <d holz innoventis de>
> Subject: How to hide a cursor inside a SpinButton?
> To: gtkmm-list gnome org
> Message-ID: <4992A1FB 6020601 innoventis de>
> Content-Type: text/plain; charset=ISO-8859-15; format=flowed
> 
> I can't find a method to hide a cursor inside a SpinButton in 
> gtkmm-reference manual.
> I think it should be possible!
> 
> Thanks in advance
> 
> 
> 
> ------------------------------
> 
> Message: 7
> Date: Wed, 11 Feb 2009 10:01:56 +0000
> From: Pedro Sousa <pasousa ml gmail com>
> Subject: Re: help with "HelloWorld"
> To: gtkmm-list gnome org
> Message-ID: <4992A214 2090303 gmail com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> 
> Hubert Figuiere wrote:
> > Ronald Amado Gilio Lucana wrote:
> >   
> >> Hi, when use:
> >> g++ main.cc | helloworld.cc | -o main  `pkg-config gtkmm-2.4 --libs
> >> --cflags`
> >>
> >> in the example "HelloWorld", as suggested Pedro Sousa, the compiler was:
> >>
> >> linux linux:~/programacion/gtkmm/ejemplo1$ g++ main.cc | helloworld.cc |
> >> -o main  `pkg-config gtkmm-2.4 --libs --cflags`
> >>     
> >
> > Remove the '|' I don't know why Pedro did put them in the example, but
> > that's just wrong.
> >
> > Like:
> >  g++ main.cc helloworld.cc -o main  `pkg-config gtkmm-2.4 --libs --cflags`
> >
> >   
> Sorry.
> Copy-past mistake :(
> 
> > Hub
> > _______________________________________________
> > gtkmm-list mailing list
> > gtkmm-list gnome org
> > http://mail.gnome.org/mailman/listinfo/gtkmm-list
> >
> >   
> 
> 
> 
> ------------------------------
> 
> _______________________________________________
> gtkmm-list mailing list
> gtkmm-list gnome org
> http://mail.gnome.org/mailman/listinfo/gtkmm-list
> 
> 
> End of gtkmm-list Digest, Vol 58, Issue 18
> ******************************************
-- 
Ronald Amado Gilio Lucana <rony 88 18 gmail com>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]