Displaying 1 result from an estimated 1 matches for "iconnames".
Did you mean:
colnames
2007 Jan 30
2
error finding library when running test program
...Here''s the test program:
----- START OF PROGRAM
require "wxruby"
ID_ICON = 1000
class IconFrame < Wx::Frame
def initialize
super(nil, -1, "Changing Icons!", Wx::DEFAULT_POSITION, Wx::Size.new
(225,150))
panel = Wx::Panel.new(self, -1)
iconNames = ["wxwin", "mondrian", "ogl", "smiley"]
icons = Wx::RadioBox.new(panel, ID_ICON, "&Icons", Wx::Point.new
(20,5),
Wx::DEFAULT_SIZE, iconNames, 1,
Wx::RA_SPECIFY_COLS)
evt_radiobox(ID_ICON) {|event...