Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #44.2K
2 Posted Topics
Re: Thank You very much....It helps a lot........ | |
I am trying to opening Word file in asp.net application. I Try Following Code For That [CODE] private Word.ApplicationClass WordApp = new Word.ApplicationClass(); protected void Button1_Click(object sender, EventArgs e) { Installation.doc"; object fileName = Server.MapPath("/WordSample/WordFiles/Test.doc"); object readOnly = false; object isVisible = true; object missing = System.Reflection.Missing.Value; WordApp.Visible = true; … |
The End.