vin1antme

Results 3 comments of vin1antme

``` require "fox16" include Fox app = FXApp.new main = FXMainWindow.new(app, "Hello, ComboBox!", :width => 250, :height => 150, :padding => 5) combo = FXComboBox.new(main, 30, :opts => LAYOUT_CENTER_X) combo.numVisible...

It is possible to leave Scala repl multi-line mode with any textual user-defined command instead of Ctrl-D. Here is example : ``` scala> :paste < xyz // Entering paste mode...

Hello, There is one more way to receive messages with custom identifiers from button via similar api - using FXPseudoTarget. Here is example: ```ruby require "fox16" require "fox16/colors" include Fox...