In my simple Wx application using Ruby, there're one Wx::Button and one Wx::StaticText. If I do something in my button's event handler, it works okay. If I wrap the something code with Thread.new block, it also works okay.

BUT, if I access Wx::StaticText.label, my application does not reply - Not Responding on its window title.

I've googled and added below code in initialize method.

timer = Wx::Timer.new(self, Wx::ID_ANY)
evt_timer(timer.id) {Thread.pass}
timer.start(10)

# or

timer = Wx::Timer.new(self)
evt_timer(timer.id) do
  sleep 0.01
end
timer.start(10)

could not fix my problem.... :(

give me any comment please.

ps. Im using Ruby 1.9

link|improve this question

61% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.