M
m.a
can I detect if word is installed at the user computer and if yes, which
version?
How can I write code to interact with a different version of word which is
not installed on my computer?
I can think of a solution such as (dummy code snippets)
object word =createobj("word.appliaction);
if (word != null) // word is installed
{
string version= word.GetVersion();
switch (version)
{
case "2000":
work_with_word_2000();
break;
case "2003":
word_with_word_2003();
break;
}
}
But how can I write this code in c#?
Any help is very appreciating.
Regards
version?
How can I write code to interact with a different version of word which is
not installed on my computer?
I can think of a solution such as (dummy code snippets)
object word =createobj("word.appliaction);
if (word != null) // word is installed
{
string version= word.GetVersion();
switch (version)
{
case "2000":
work_with_word_2000();
break;
case "2003":
word_with_word_2003();
break;
}
}
But how can I write this code in c#?
Any help is very appreciating.
Regards