Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

c# check if word is installed

Type officeType = Type.GetTypeFromProgID("Word.Application");

if (officeType == null)
{
    // Word is not installed.
    // Show message or alert that Word is not installed.
}
else
{
    // Word is installed.
    // Continue your work.
}
Source by www.codeproject.com #
 
PREVIOUS NEXT
Tagged: #check #word #installed
ADD COMMENT
Topic
Name
3+9 =