Ed Leafe wrote:
> On Sep 27, 2009, at 10:02 AM, Ricardo Aráoz wrote:
>
>   
>> Is there a TabOrder property I am not seeing?
>>     
>
>
>       No, there isn't. I've thought about it, but it's a more involved  
> issue than just adding the property: the form now has to manage every  
> control's order, even when you don't specify the TabOrder.
>
>       I may have some time today to work on this; let me see how it works  
> out.
>   
If it's any help, I found this in the web :
---------------------------------------------------------------------------
4) Here's a little idiom for setting tab order once you have the
controls set up:

order = (control1, control2, control3, ...)
for i in xrange(len(order) - 1):
    order[i+1].MoveAfterInTabOrder(order[i])
---------------------------------------------------------------------------

Do we have this wx method (MoveAfterInTabOrder) in dabo's controls? If we do, 
then that would be enough, I could easily put some code in the form's 
afterInitAll method to set the tab order the way I want.






--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[email protected]

Reply via email to