Thanks Lyle for helping me with my other question.
Now I have a new one because it runs counter to what I think the docs are telling me.
Here is the code...
require 'rubygems'
require 'fox16'
include Fox
app = FXApp.new
wiz = FXWizard.new(app, 'wiz', nil, :width => 640, :height => 480)
wiz.cancelButton.connect(SEL_COMMAND) { exit }
one = FXText.new(wiz.container, :opts => LAYOUT_FILL)
one.text = "Some useful information here"
two = FXButton.new(wiz.container, 'a big ole button', :opts => FRAME_RAISED|LAYOUT_FILL)
wiz.finishButton.connect(SEL_COMMAND) { exit }
app.create
wiz.show(PLACEMENT_SCREEN)
app.run
It seems that when I add attach a command to the wiz.finishButton, when the time comes for it to appear (on the last panel) it disappears...
_______________________________________________
fxruby-users mailing list
fxruby-users@...
http://rubyforge.org/mailman/listinfo/fxruby-users