Sha256: 22f8f86790719d2b26a3c71c6b1cc517f0ed3686790012e3b7c802cebc832d69

Contents?: true

Size: 876 Bytes

Versions: 12

Compression:

Stored size: 876 Bytes

Contents

#!/usr/bin/env ruby
# wxRuby2 Sample Code. Copyright (c) 2004-2008 wxRuby development team
# Freely reusable code: see SAMPLES-LICENSE.TXT for details
begin
  require 'rubygems' 
rescue LoadError
end
require 'wx'



module Demo
    def Demo.run(frame, nb, log)
        lst = %w(apple pear banana coconut orange etc etc.. etc...)
        choices = Wx::get_multiple_choices("Pick some from\n this list\nblah blah...", "m.s.d.", lst)
        if choices
            log.write_text("You selected " + choices.length().to_s() + " items:")
            choices.each_index {|i| log.write_text("\t" + choices[i].to_s() + " => " + lst[choices[i]])}
        end
    end

    def Demo.overview
        return ""
    end
end
    

if __FILE__ == $0
  run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
  load run_solo_lib
  run File.basename($0)
end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
wxruby64-2.0.1-x64-mingw32 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-2.0.1-x86-mswin32-60 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.7-i386-mswin32 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.10-x86-mswin32-60 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.6-x86-mswin32-60 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.6-x86-mingw32 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.7-x86-mswin32-60 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.8-x86-mingw32 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.8-x86-mswin32-60 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.9-x86-mingw32 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-1.9.9-x86-mswin32-60 samples/bigdemo/wxMultipleChoiceDialog.rbw
wxruby-2.0.0-x86-mswin32-60 samples/bigdemo/wxMultipleChoiceDialog.rbw