G
Gordian
Good Day!
Context
--------
My question is about .NET2.0 (c#) and Office 2003 (Word/Outlook).
I try to write an c# application, which uses the Word-Editor(in some
postings called WordMail) for emailing.
What I know
-----------
I found a way to display the WordMail-Window indirectly with the aid of
wdDialogFileNew:
.............................................
private void button1_Click(object sender, EventArgs e)
{
showDialog(Word.WdWordDialog.wdDialogFileNew);
}
private void showDialog(Word.WdWordDialog dialogId)
{
Object timeOut = Type.Missing;
Word.Dialog dlg;
dlg = appWord.Dialogs[dialogId];
dlg.Show(ref timeOut);
}
................................................
Problem
--------
I cannot investigate how to display the WordMail-Window directly with
c#-code e.g. by clicking on a LinkLabel.
Does someone knows how I can do this?
Thank You for your Tips
Gordian
Context
--------
My question is about .NET2.0 (c#) and Office 2003 (Word/Outlook).
I try to write an c# application, which uses the Word-Editor(in some
postings called WordMail) for emailing.
What I know
-----------
I found a way to display the WordMail-Window indirectly with the aid of
wdDialogFileNew:
.............................................
private void button1_Click(object sender, EventArgs e)
{
showDialog(Word.WdWordDialog.wdDialogFileNew);
}
private void showDialog(Word.WdWordDialog dialogId)
{
Object timeOut = Type.Missing;
Word.Dialog dlg;
dlg = appWord.Dialogs[dialogId];
dlg.Show(ref timeOut);
}
................................................
Problem
--------
I cannot investigate how to display the WordMail-Window directly with
c#-code e.g. by clicking on a LinkLabel.
Does someone knows how I can do this?
Thank You for your Tips
Gordian