[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

how do you make forms?

Rae

1/29/2007 5:08:00 PM

How do you make forms for your program in Ruby? Do you need some
particular software?

5 Answers

Tim Pease

1/29/2007 6:13:00 PM

0

On 1/29/07, Rae <Raeka8@yahoo.com> wrote:
> How do you make forms for your program in Ruby? Do you need some
> particular software?
>

This question is very vague. Please provide a more detail about what
you mean by "forms" in a Ruby program.

Blessings,
TwP

Alin Alin

1/29/2007 9:33:00 PM

0

Rae wrote:
> How do you make forms for your program in Ruby? Do you need some
> particular software?

Hello Rae,

My advice is to use Glade as a visual designer of the forms and, of
course, GTK2 as GUI libraries. Using glade is very easy and after that,
just require 'libglade2' and read the whole form by using GladeXML
class.

For more details, check http://ruby-gnome2.sourc...

Here is a video demo of how to use ruby with glade2:
http://redhanded.hobix.com/cult/rubyGnome2andglade...


Best regards,
Alin.

--
Posted via http://www.ruby-....

Phillip Gawlowski

1/29/2007 11:15:00 PM

0

Alin Popa wrote:

> Here is a video demo of how to use ruby with glade2:
> http://redhanded.hobix.com/cult/rubyGnome2andglade...


Is there a non-flash version of this video?

Alin Alin

1/30/2007 6:26:00 AM

0

unknown wrote:
> Alin Popa wrote:
>
>> Here is a video demo of how to use ruby with glade2:
>> http://redhanded.hobix.com/cult/rubyGnome2andglade...
>
>
> Is there a non-flash version of this video?

Sorry, I really don't know.

Alin.

--
Posted via http://www.ruby-....

Rae

1/31/2007 2:47:00 AM

0

On Jan 29, 4:33 pm, Alin Popa <alinut...@yahoo.com> wrote:
> Raewrote:
> > How do you make forms for your program in Ruby? Do you need some
> > particular software?
>
> HelloRae,
>
> My advice is to use Glade as a visual designer of the forms and, of
> course, GTK2 as GUI libraries. Using glade is very easy and after that,
> just require 'libglade2' and read the whole form by using GladeXML
> class.
>
> For more details, checkhttp://ruby-gnome2.sourc...
>
> Here is a video demo of how to use ruby with glade2:http://redhanded.hobix.com/cult/rubyGnome2andglade...
>
> Best regards,
> Alin.
>
> --
> Posted viahttp://www.ruby-....

Thanks. Looks great. Will try it!