tags:

views:

28

answers:

1

I have developed an application inside ESRI ArcMAP that uses several forms that are raised by buttons on a toolbar. I'd like to convert these forms to a set of tabs on a single form. Is there a way to bind the forms to individual tabs or do I have to just recreate the form as controls on each tab?

+1  A: 

Recreate each form as a UserControl. You should be able to mostly just copy and paste the controls and code. Once you get to that point you can easily stick each UserControl on its own tab.

Brian Ensink