wxRuby textArea?

I want to know wxruby can make textArea like java??
I can only use textbox with it but it has problem when I must use text
that has many line, it can’t new line

please help me

Pat K. wrote:

I want to know wxruby can make textArea like java??
I can only use textbox with it but it has problem when I must use text
that has many line, it can’t new line

Seems like you want the multi-line version of wxTextCtrl.

In general, if you’re looking for a specific type of control, run the
bigdemo sample and locate the control (and code) there.

Best regards,

Jari W.

Pat K. wrote:

I want to know wxruby can make textArea like java??
I can only use textbox with it but it has problem when I must use text
that has many line, it can’t new line

textarea = Wx::TextCtrl.new(parent, :style => Wx::TE_MULTILINE)

see:
http://wxruby.rubyforge.org/doc/textctrl.html

alex

thank you :smiley: