Click here to Skip to main content
15,885,767 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
How can i have to call Microsoft word application in vb.net 2010
Posted
Comments
Sergey Alexandrovich Kryukov 5-Jul-12 16:37pm    
What do you mean by "call application"? Application is not a method, function, procedure, property or an operator.
--SA

1 solution

C#
System.Diagnostics.Process.Start(
            @"Winword.exe");



More options here

http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900