Displaying 2 results from an estimated 2 matches for "help_file".
2020 Oct 28
1
segfault during net rpc printer migrate drivers
...?????????????????????? data_file??????????????? :
'\\RM-SAMBA01\print$\W32X86\3\hp9050-1.ppd'
??????????????????????????? config_file????????????? : *
??????????????????????????????? config_file????????????? :
'\\RM-SAMBA01\print$\W32X86\3\ps5ui.dll'
??????????????????????????? help_file??????????????? : *
??????????????????????????????? help_file??????????????? :
'\\RM-SAMBA01\print$\W32X86\3\pscript.hlp'
??????????????????????????? monitor_name???????????? : *
??????????????????????????????? monitor_name???????????? : 'JBV'
??????????????????????????? default...
2006 Dec 12
0
[782] trunk/wxruby2/samples/bigdemo: HtmlHelpWindow sample with helpfile
...IZE,
+ Wx::NO_FULL_REPAINT_ON_RESIZE)
+ @log = log
+
+ b = Wx::Button.new(self, -1, ''Give me some help!'',
+ Wx::Point.new(50,50))
+
+ evt_button(b.get_id) { on_button }
+ end
+
+ def on_button
+ help = Wx::HtmlHelpController.instance
+ help_file = File.join( File.dirname(__FILE__), ''helpfile.htb'')
+ exit if not File.exists?(help_file)
+ help.add_book( File.expand_path(help_file), false )
+ help.display_contents
+ end
+end
+
+module Demo
+ def Demo.run(frame, nb, log)
+ TestPanel.new(nb, log)
+ end
+...