Displaying 2 results from an estimated 2 matches for "nb_top".
Did you mean:
_top
2008 Jan 16
2
Question about WxNotebook, threads, and GUI refreshing
...Here is the main app code:
--- MultiTool.rb ---
require ''wx''
require ''wx_sugar/all''
require ''panels/all.rb''
class MainNB < Wx::Notebook
def initialize(parent, id)
super(parent, id, Wx::DEFAULT_POSITION, Wx::DEFAULT_SIZE,
Wx::NB_TOP)
fpar_page = add_page(FPARPanel.new(self), "Acct. Report", true, 0)
gsbis_page = add_page(GSBISPanel.new(self), "Inv. Scan", true, 0)
mpa_page = add_page(MPAPanel.new(self), "Product Addition", true, 0)
msrpc_page = add_page(MSRPCPanel....
2007 Nov 09
6
Wx::Notebook tabs, bug reports on...
Thank you Alex for the answer to my previous question --
it was exactly what I was looking for!
Moving on, I have some bugs to report:
I''m using the Wx::Notebook class and it looks to me
like Wx::NB_LEFT, Wx::NB_RIGHT, and Wx::NB_BOTTOM are
defined incorrectly. To get my tabs to appear on the
bottom, for example, I find I have to use Wx::NB_LEFT.
Same symptom in