Displaying 3 results from an estimated 3 matches for "mynotebook".
Did you mean:
m_notebook
2007 Nov 08
1
Why don''t my tabs look as nice as theirs?
...from a typical app running on the same Windows XP machine.
Is there a way to make my tabs look like theirs? I feel
like I''m missing something very simple.
Here''s my test script:
------------------------------------------------------------
require "wx"
include Wx
class MyNotebook < Notebook
def initialize( parent )
super(parent, -1)
%w[ Apples Oranges Bananas ].each{ |d|
win = Panel.new( self, -1 )
add_page( win, d, false )
}
end
end
class MyApp < App
def on_init
frame = Frame.new(nil, -1, "Test")
MyNotebook.new( frame )
frame...
2010 Jun 03
1
R upgrade fails on r-cran-class
...he package is missing, has been obsoleted, or
is only available from another source
E: Package r-cran-class has no installation candidate
I installed backports of r-base-core and r-base-dev, but this did not
help the problem. Do I need to reinstall Debian?
Diagnostic information:
# uname -a
Linux MyNotebook 2.6.26-2-amd64 #1 SMP Tue Jan 12 22:12:20 UTC 2010
x86_64 GNU/Linux
> sessionInfo()
R version 2.11.1 (2010-05-31)
x86_64-pc-linux-gnu
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=C L...
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