From: Kevin A. <al...@se...> - 2006-08-13 06:09:55
|
On Aug 12, 2006, at 3:41 PM, hwphillips wrote: > How do you select a notebook page, other than with the mouse. I load 3 > pages and when the program runs, the last page is selected. I would > like > to default to the first page but can't figure out how to do it. > Thanks. Simply change the selection attribute of your notebook: self.components.notebook.selection = 0 That's assuming your notebook component is named 'notebook'. ka |