monobotics-develop Mailing List for monoBOTICS (Page 3)
Brought to you by:
buhochileno
You can subscribe to this list here.
2008 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(13) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(29) |
Oct
(10) |
Nov
(8) |
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jaime A. <obe...@ho...> - 2009-09-09 19:35:35
|
Hola. He integrado X10Address, X10Module y X10Interface. La clase X10Address me resulto bien. Puedo "setearle" el housecode y el devicecode que son las únicas propiedades que posee. Ahora tengo mis dudas acerca de mis otras clases. La clase X10Module se compone de X10Address e X10Interface, pero no se como se le agregan. Tomando como ejemplo la clase OrbitKit, esta una vez que se arrastra el formulario grafico, aparecen sus clases que la componen, pero en mi clase X10Module esta aparece vacía, pero en el form grilla aparecen las propiedades. Por lo tanto mi duda es cuando se le asignan los subobjetos a mi clase X10Module. Una vez que ya estan agregados al form Grafico o deberian quedar agregados al momento de arrastrarlos al form grafico. |
From: <buh...@gm...> - 2009-09-08 12:45:16
|
prueba exitosa... Jaime Alvarado wrote: > Jaime Alvarado Probando Mailing List. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > ------------------------------------------------------------------------ > > _______________________________________________ > Monobotics-develop mailing list > Mon...@li... > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > |
From: Jaime A. <obe...@ho...> - 2009-09-08 01:25:07
|
Jaime Alvarado Probando Mailing List. |
From: <buh...@gm...> - 2009-03-20 19:55:54
|
testing...please respond if you see this mail... Mauricio |
From: <buh...@gm...> - 2009-01-15 20:23:58
|
Respondo en español para que no queden dudas... Leonardo Kusch G. wrote: > "CodeGenerator" remains in charge of defining the language that will > generate the code?, para que, si el codegenerator tienen un miembro y propiedad "compiler", que permite definir eso... > This is also delivering the code as a "StreamWriter" or a > "CodeCompileUnit"? As "CodeGenerator" now handles the entire process > from generating code to execute the compiled the "Generate" from > "CodeGenerator" should now receive parameters to specify the type of > generation, and so on. creo que eso tambien se puede setear mediante el miembor compilador del codegenerator, si se debe considerar que codegenerator le entregue lo "generado" como un codeunit a su miembro compiler cuando se llame a "Generate" del codegenerator... > I am perhaps a little ahead with the latter, but I would like to know. > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > SourcForge Community > SourceForge wants to tell your story. > http://p.sf.net/sfu/sf-spreadtheword > ------------------------------------------------------------------------ > > _______________________________________________ > Monobotics-develop mailing list > Mon...@li... > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > |
From: Leonardo K. G. <lk...@ms...> - 2009-01-15 19:06:26
|
"CodeGenerator" remains in charge of defining the language that will generate the code?, This is also delivering the code as a "StreamWriter" or a "CodeCompileUnit"? As "CodeGenerator" now handles the entire process from generating code to execute the compiled the "Generate" from "CodeGenerator" should now receive parameters to specify the type of generation, and so on. I am perhaps a little ahead with the latter, but I would like to know. |
From: <buh...@gm...> - 2008-12-17 17:25:22
|
ok, sip algo asi..pero pierdes el hilorapidamente...si es algo sencillo que de lo anterior no entendiste? simplemente un metodo que sea: public Type GetType(string type) { <insert wherever is needed here> } eso en la CodeGenerator para que actue como el que tienes que retorna el modificador de acceso.. porque una lista de assemblies?, vez que pierdes orientacion a objetos altiro?, se supone que codegenerator tiene un objeto compiler y ese si tiene la lista de ensamblados verdad? ...entonces se ocupa esa nomas..si van a ser los usados en la compilacion mas tarde del codigo generado, entonces porque otra lista mas? ...luego codegenerator obtiene la info de una clase, metodo, propiedad como texto desde el ipx, crea el objeto info adecuado a lo que esta haciendo (clase, metodo, propiedad...) y usa esas funciones que ayudan a encontrar los *tipos* o *modificadore de acceso* adecuados a partir de strings para crear correctamente el objeto *info*..bueno y adicionalmente los agrega a las listas de clases, metodos, etc.. tengo todavia mis dudas respecto a las clases info...pero necesitamos ver una implementacion real de lo que podrian ser y/o beneficios traer para realmente saber si son el camino, cuando vas a tener eso? Proximo correo de cualquier tipo de cosa relacionada con monobotics o icarus (relacionada con monobotics) debes hacerlo por el mailinglist oficial de monobotics, todo lo que se postee en español debera llevar un [ES] en el subject del 1er post que precede al hilo... Master Leonardo Kusch wrote: > No tengo muy pulida la idea pero ya la probé y funciona.... > > la idea general: sabemos que desde un kit se puede obtener un string > que representa el tipo de un dato, bueno para que yo pueda convertir > ese string a un Type existe un comando que me retorna el tipo a partir > de un string, pero debo verificar que ese string sea valido, ademas no > puede resolver tipos que no estén dentro del ensamblado en el cual se > ejecuta. la solución a esto es mas o menos esta : > > public static Type ResolveStringToType(List<string> assemblies, string > type) > { > foreach(string assemblie in assemblies) > { > Assembly a = > System.Reflection.Assembly.ReflectionOnlyLoadFrom(assemblie); > foreach (Type t in a.GetTypes()) > { > if((t.FullName == type)||(t.Name == type)) > return t; > } > } > return null; > } > > donde List<string>assemblies es librariesList en kitgenerator, asi de > esta manera puedo verificar y resolver el tipo valido de ensamblados > externos. servirá? > > Con respecto al comentario, es cierto, me relaje un poco, pero ya > reaccione. |
From: <buh...@gm...> - 2008-06-28 23:51:44
|
can you readme? monica andrea wrote: > Probandoo maillist > ------------------------------------------------------------------------ > Sigue al minuto las principales noticias de tu ciudad MSN Deportes > <http://deportes.es.msn.com/> > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > ------------------------------------------------------------------------ > > _______________________________________________ > Monobotics-develop mailing list > Mon...@li... > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > |
From: monica a. <mi...@ho...> - 2008-06-28 23:49:47
|
Probandoo maillist _________________________________________________________________ Tecnología, moda, motor, viajes,…suscríbete a nuestros boletines para estar siempre a la última http://newsletters.msn.com/hm/maintenanceeses.asp?L=ES&C=ES&P=WCMaintenance&Brand=WL&RU=http%3a%2f%2fmail.live.com |
From: Leonardo K. G. <lk...@ms...> - 2008-06-28 23:33:22
|
Testing mail list |
From: <buh...@gm...> - 2008-06-28 23:26:52
|
ok, but changing the subject you are creting a new "thread", only change thread when you need a new topic/question...and be sure that only have the mailing list mail for the destination address, some mail clients add also the personal mail of the original sender....just the mailing list addres... bye Marcelo Barrientos wrote: > ok, i can read the messages now > > > Marcelo > > > > > > > From: mon...@li... > > Subject: Monobotics-develop Digest, Vol 1, Issue 1 > > To: mon...@li... > > Date: Sat, 28 Jun 2008 14:32:57 -0700 > > > > Send Monobotics-develop mailing list submissions to > > mon...@li... > > > > To subscribe or unsubscribe via the World Wide Web, visit > > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > > or, via email, send a message with subject or body 'help' to > > mon...@li... > > > > You can reach the person managing the list at > > mon...@li... > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of Monobotics-develop digest..." > > > > > > Today's Topics: > > > > 1. test 1 monobotics develop (buh...@gm...) > > 2. Testing mailing list (buh...@gm...) > > 3. Re: Testing mailing list (Patricio Palma) > > 4. Funciona ok (Leonardo Kusch G.) > > 5. Test (Monica perez) > > 6. Re: Test (buh...@gm...) > > 7. test 2 (Monica perez) > > 8. (no subject) (Monica perez) > > 9. Re: test 2 (Leonardo Kusch G.) > > > > > > ---------------------------------------------------------------------- > > > > Message: 1 > > Date: Mon, 31 Mar 2008 15:18:34 -0400 > > From: "buh...@gm..." <buh...@gm...> > > Subject: [Monobotics-develop] test 1 monobotics develop > > To: mon...@li... > > Message-ID: <47F...@gm...> > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > > test 1 monobotics develop > > > > > > > > > > ------------------------------ > > > > Message: 2 > > Date: Sat, 28 Jun 2008 16:09:29 -0400 > > From: "buh...@gm..." <buh...@gm...> > > Subject: [Monobotics-develop] Testing mailing list > > To: mon...@li... > > Message-ID: <486...@gm...> > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > > ...say yes if you can read this (Leo, Monica, Pato, Marcelo..) > > > > > > > > > > ------------------------------ > > > > Message: 3 > > Date: Sat, 28 Jun 2008 16:14:35 -0400 > > From: "Patricio Palma" <pat...@ic...> > > Subject: Re: [Monobotics-develop] Testing mailing list > > To: "buh...@gm..." <buh...@gm...>, > > mon...@li... > > Message-ID: > > <d42...@ma...> > > Content-Type: text/plain; charset="iso-8859-1" > > > > On Sat, Jun 28, 2008 at 4:09 PM, buh...@gm... < > > buh...@gm...> wrote: > > > > > ...say yes if you can read this (Leo, Monica, Pato, Marcelo..) > > > > > > > > > > ------------------------------------------------------------------------- > > > Check out the new SourceForge.net Marketplace. > > > It's the best place to buy or sell services for > > > just about anything Open Source. > > > http://sourceforge.net/services/buy/index.php > > > _______________________________________________ > > > Monobotics-develop mailing list > > > Mon...@li... > > > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > > > > > > > Yes, I can read it, perfectly > > > > -- > > Patricio Adolfo Palma Solis > > Estudiante de Ingenier?a en Computaci?n > > Universidad Austral de Chile > > pat...@ic... > > 83852414 > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > > > ------------------------------ > > > > Message: 4 > > Date: Sat, 28 Jun 2008 17:09:34 -0400 > > From: "Leonardo Kusch G." <lk...@ms...> > > Subject: [Monobotics-develop] Funciona ok > > To: <Mon...@li...> > > Message-ID: <BAY...@ph...l> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Correo recibido. > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > > > ------------------------------ > > > > Message: 5 > > Date: Sat, 28 Jun 2008 17:17:15 -0400 > > From: "Monica perez" <per...@gm...> > > Subject: [Monobotics-develop] Test > > To: mon...@li... > > Message-ID: > > <f47...@ma...> > > Content-Type: text/plain; charset="iso-8859-1" > > > > Test > > -- > > Monica Perez > > Estudiante Ingenieria en Computacion > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > > > ------------------------------ > > > > Message: 6 > > Date: Sat, 28 Jun 2008 17:17:29 -0400 > > From: "buh...@gm..." <buh...@gm...> > > Subject: Re: [Monobotics-develop] Test > > To: mon...@li... > > Message-ID: <486...@gm...> > > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > > > Test recivido... > > > > Monica perez wrote: > > > > > > Test > > > -- > > > Monica Perez > > > Estudiante Ingenieria en Computacion > > > > ------------------------------------------------------------------------ > > > > > > > ------------------------------------------------------------------------- > > > Check out the new SourceForge.net Marketplace. > > > It's the best place to buy or sell services for > > > just about anything Open Source. > > > http://sourceforge.net/services/buy/index.php > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > Monobotics-develop mailing list > > > Mon...@li... > > > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > > > > > > > > > > > > > ------------------------------ > > > > Message: 7 > > Date: Sat, 28 Jun 2008 17:26:38 -0400 > > From: "Monica perez" <per...@gm...> > > Subject: [Monobotics-develop] test 2 > > To: mon...@li... > > Message-ID: > > <f47...@ma...> > > Content-Type: text/plain; charset="iso-8859-1" > > > > -- > > Monica Perez > > Estudiante Ingenieria en Computacion > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > > > ------------------------------ > > > > Message: 8 > > Date: Sat, 28 Jun 2008 17:32:33 -0400 > > From: "Monica perez" <per...@gm...> > > Subject: [Monobotics-develop] (no subject) > > To: mon...@li... > > Message-ID: > > <f47...@ma...> > > Content-Type: text/plain; charset="iso-8859-1" > > > > test > > > > -- > > Monica Perez > > Estudiante Ingenieria en Computacion > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > > > ------------------------------ > > > > Message: 9 > > Date: Sat, 28 Jun 2008 17:32:46 -0400 > > From: "Leonardo Kusch G." <lk...@ms...> > > Subject: Re: [Monobotics-develop] test 2 > > To: "Monica perez" <per...@gm...>, > > <mon...@li...> > > Message-ID: <BAY...@ph...l> > > Content-Type: text/plain; charset="iso-8859-1" > > > > probando, .... probando > > > > > > From: Monica perez > > Sent: Saturday, June 28, 2008 5:26 PM > > To: mon...@li... > > Subject: [Monobotics-develop] test 2 > > > > > > > > > > -- > > Monica Perez > > Estudiante Ingenieria en Computacion > > > > > > > -------------------------------------------------------------------------------- > > > > > > > ------------------------------------------------------------------------- > > Check out the new SourceForge.net Marketplace. > > It's the best place to buy or sell services for > > just about anything Open Source. > > http://sourceforge.net/services/buy/index.php > > > > > > > -------------------------------------------------------------------------------- > > > > > > _______________________________________________ > > Monobotics-develop mailing list > > Mon...@li... > > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > > -------------- next part -------------- > > An HTML attachment was scrubbed... > > > > ------------------------------ > > > > > ------------------------------------------------------------------------- > > Check out the new SourceForge.net Marketplace. > > It's the best place to buy or sell services for > > just about anything Open Source. > > http://sourceforge.net/services/buy/index.php > > > > ------------------------------ > > > > _______________________________________________ > > Monobotics-develop mailing list > > Mon...@li... > > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > > > > > > End of Monobotics-develop Digest, Vol 1, Issue 1 > > ************************************************ > > ------------------------------------------------------------------------ > Descarga GRATIS el poder del nuevo Internet Explorer 7. Internet > Explorer 7 <http://optimized.msn.com/Default.aspx?mkt=es-cl> > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > ------------------------------------------------------------------------ > > _______________________________________________ > Monobotics-develop mailing list > Mon...@li... > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > |
From: Marcelo B. <son...@ho...> - 2008-06-28 23:23:14
|
ok, i can read the messages now Marcelo > From: mon...@li...> Subject: Monobotics-develop Digest, Vol 1, Issue 1> To: mon...@li...> Date: Sat, 28 Jun 2008 14:32:57 -0700> > Send Monobotics-develop mailing list submissions to> mon...@li...> > To subscribe or unsubscribe via the World Wide Web, visit> https://lists.sourceforge.net/lists/listinfo/monobotics-develop> or, via email, send a message with subject or body 'help' to> mon...@li...> > You can reach the person managing the list at> mon...@li...> > When replying, please edit your Subject line so it is more specific> than "Re: Contents of Monobotics-develop digest..."> > > Today's Topics:> > 1. test 1 monobotics develop (buh...@gm...)> 2. Testing mailing list (buh...@gm...)> 3. Re: Testing mailing list (Patricio Palma)> 4. Funciona ok (Leonardo Kusch G.)> 5. Test (Monica perez)> 6. Re: Test (buh...@gm...)> 7. test 2 (Monica perez)> 8. (no subject) (Monica perez)> 9. Re: test 2 (Leonardo Kusch G.)> > > ----------------------------------------------------------------------> > Message: 1> Date: Mon, 31 Mar 2008 15:18:34 -0400> From: "buh...@gm..." <buh...@gm...>> Subject: [Monobotics-develop] test 1 monobotics develop> To: mon...@li...> Message-ID: <47F...@gm...>> Content-Type: text/plain; charset=ISO-8859-1; format=flowed> > test 1 monobotics develop> > > > > ------------------------------> > Message: 2> Date: Sat, 28 Jun 2008 16:09:29 -0400> From: "buh...@gm..." <buh...@gm...>> Subject: [Monobotics-develop] Testing mailing list> To: mon...@li...> Message-ID: <486...@gm...>> Content-Type: text/plain; charset=ISO-8859-1; format=flowed> > ...say yes if you can read this (Leo, Monica, Pato, Marcelo..)> > > > > ------------------------------> > Message: 3> Date: Sat, 28 Jun 2008 16:14:35 -0400> From: "Patricio Palma" <pat...@ic...>> Subject: Re: [Monobotics-develop] Testing mailing list> To: "buh...@gm..." <buh...@gm...>,> mon...@li...> Message-ID:> <d42...@ma...>> Content-Type: text/plain; charset="iso-8859-1"> > On Sat, Jun 28, 2008 at 4:09 PM, buh...@gm... <> buh...@gm...> wrote:> > > ...say yes if you can read this (Leo, Monica, Pato, Marcelo..)> >> >> > -------------------------------------------------------------------------> > Check out the new SourceForge.net Marketplace.> > It's the best place to buy or sell services for> > just about anything Open Source.> > http://sourceforge.net/services/buy/index.php> > _______________________________________________> > Monobotics-develop mailing list> > Mon...@li...> > https://lists.sourceforge.net/lists/listinfo/monobotics-develop> >> > Yes, I can read it, perfectly> > -- > Patricio Adolfo Palma Solis> Estudiante de Ingenier?a en Computaci?n> Universidad Austral de Chile> pat...@ic...> 83852414> -------------- next part --------------> An HTML attachment was scrubbed...> > ------------------------------> > Message: 4> Date: Sat, 28 Jun 2008 17:09:34 -0400> From: "Leonardo Kusch G." <lk...@ms...>> Subject: [Monobotics-develop] Funciona ok> To: <Mon...@li...>> Message-ID: <BAY...@ph...l>> Content-Type: text/plain; charset="iso-8859-1"> > Correo recibido.> -------------- next part --------------> An HTML attachment was scrubbed...> > ------------------------------> > Message: 5> Date: Sat, 28 Jun 2008 17:17:15 -0400> From: "Monica perez" <per...@gm...>> Subject: [Monobotics-develop] Test> To: mon...@li...> Message-ID:> <f47...@ma...>> Content-Type: text/plain; charset="iso-8859-1"> > Test> -- > Monica Perez> Estudiante Ingenieria en Computacion> -------------- next part --------------> An HTML attachment was scrubbed...> > ------------------------------> > Message: 6> Date: Sat, 28 Jun 2008 17:17:29 -0400> From: "buh...@gm..." <buh...@gm...>> Subject: Re: [Monobotics-develop] Test> To: mon...@li...> Message-ID: <486...@gm...>> Content-Type: text/plain; charset=ISO-8859-1; format=flowed> > Test recivido...> > Monica perez wrote:> >> > Test> > -- > > Monica Perez> > Estudiante Ingenieria en Computacion> > ------------------------------------------------------------------------> >> > -------------------------------------------------------------------------> > Check out the new SourceForge.net Marketplace.> > It's the best place to buy or sell services for> > just about anything Open Source.> > http://sourceforge.net/services/buy/index.php> > ------------------------------------------------------------------------> >> > _______________________________________________> > Monobotics-develop mailing list> > Mon...@li...> > https://lists.sourceforge.net/lists/listinfo/monobotics-develop> > > > > > > ------------------------------> > Message: 7> Date: Sat, 28 Jun 2008 17:26:38 -0400> From: "Monica perez" <per...@gm...>> Subject: [Monobotics-develop] test 2> To: mon...@li...> Message-ID:> <f47...@ma...>> Content-Type: text/plain; charset="iso-8859-1"> > -- > Monica Perez> Estudiante Ingenieria en Computacion> -------------- next part --------------> An HTML attachment was scrubbed...> > ------------------------------> > Message: 8> Date: Sat, 28 Jun 2008 17:32:33 -0400> From: "Monica perez" <per...@gm...>> Subject: [Monobotics-develop] (no subject)> To: mon...@li...> Message-ID:> <f47...@ma...>> Content-Type: text/plain; charset="iso-8859-1"> > test> > -- > Monica Perez> Estudiante Ingenieria en Computacion> -------------- next part --------------> An HTML attachment was scrubbed...> > ------------------------------> > Message: 9> Date: Sat, 28 Jun 2008 17:32:46 -0400> From: "Leonardo Kusch G." <lk...@ms...>> Subject: Re: [Monobotics-develop] test 2> To: "Monica perez" <per...@gm...>,> <mon...@li...>> Message-ID: <BAY...@ph...l>> Content-Type: text/plain; charset="iso-8859-1"> > probando, .... probando> > > From: Monica perez > Sent: Saturday, June 28, 2008 5:26 PM> To: mon...@li... > Subject: [Monobotics-develop] test 2> > > > > -- > Monica Perez> Estudiante Ingenieria en Computacion > > > --------------------------------------------------------------------------------> > > -------------------------------------------------------------------------> Check out the new SourceForge.net Marketplace.> It's the best place to buy or sell services for> just about anything Open Source.> http://sourceforge.net/services/buy/index.php > > > --------------------------------------------------------------------------------> > > _______________________________________________> Monobotics-develop mailing list> Mon...@li...> https://lists.sourceforge.net/lists/listinfo/monobotics-develop> -------------- next part --------------> An HTML attachment was scrubbed...> > ------------------------------> > -------------------------------------------------------------------------> Check out the new SourceForge.net Marketplace.> It's the best place to buy or sell services for> just about anything Open Source.> http://sourceforge.net/services/buy/index.php> > ------------------------------> > _______________________________________________> Monobotics-develop mailing list> Mon...@li...> https://lists.sourceforge.net/lists/listinfo/monobotics-develop> > > End of Monobotics-develop Digest, Vol 1, Issue 1> ************************************************ _________________________________________________________________ Descarga GRATIS el poder del nuevo Internet Explorer 7. http://optimized.msn.com/Default.aspx?mkt=es-cl |
From: Leonardo K. G. <lk...@ms...> - 2008-06-28 21:32:57
|
probando, .... probando From: Monica perez Sent: Saturday, June 28, 2008 5:26 PM To: mon...@li... Subject: [Monobotics-develop] test 2 -- Monica Perez Estudiante Ingenieria en Computacion -------------------------------------------------------------------------------- ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php -------------------------------------------------------------------------------- _______________________________________________ Monobotics-develop mailing list Mon...@li... https://lists.sourceforge.net/lists/listinfo/monobotics-develop |
From: Monica p. <per...@gm...> - 2008-06-28 21:32:36
|
test -- Monica Perez Estudiante Ingenieria en Computacion |
From: Monica p. <per...@gm...> - 2008-06-28 21:26:41
|
-- Monica Perez Estudiante Ingenieria en Computacion |
From: <buh...@gm...> - 2008-06-28 21:18:03
|
Test recivido... Monica perez wrote: > > Test > -- > Monica Perez > Estudiante Ingenieria en Computacion > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > ------------------------------------------------------------------------ > > _______________________________________________ > Monobotics-develop mailing list > Mon...@li... > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > |
From: Monica p. <per...@gm...> - 2008-06-28 21:17:20
|
Test -- Monica Perez Estudiante Ingenieria en Computacion |
From: Leonardo K. G. <lk...@ms...> - 2008-06-28 21:09:46
|
Correo recibido. |
From: Patricio P. <pat...@ic...> - 2008-06-28 20:14:38
|
On Sat, Jun 28, 2008 at 4:09 PM, buh...@gm... < buh...@gm...> wrote: > ...say yes if you can read this (Leo, Monica, Pato, Marcelo..) > > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > Monobotics-develop mailing list > Mon...@li... > https://lists.sourceforge.net/lists/listinfo/monobotics-develop > Yes, I can read it, perfectly -- Patricio Adolfo Palma Solis Estudiante de Ingeniería en Computación Universidad Austral de Chile pat...@ic... 83852414 |
From: <buh...@gm...> - 2008-06-28 20:09:55
|
...say yes if you can read this (Leo, Monica, Pato, Marcelo..) |
From: <buh...@gm...> - 2008-04-01 19:23:03
|
test 1 monobotics develop |