How to get custom form data

N

Nir

Hi,

I have created custom form and display it this way:

Outlook.MAPIFolder folder =
application.ActiveExplorer().CurrentFolder;
Outlook.MailItem item = (Outlook.MailItem)folder.Items.
Add ("IPM.Note.myForm);
item.Display(false);

Now, After my Custom form is shown how can I get its data?
(Textbox and etc)

Thanks.
 
Top