Click here to Skip to main content
15,888,461 members
Home / Discussions / Windows Forms
   

Windows Forms

 
AnswerRe: hi... Pin
Giorgi Dalakishvili11-Jun-08 2:49
mentorGiorgi Dalakishvili11-Jun-08 2:49 
GeneralRe: hi... Pin
SamRST11-Jun-08 2:54
SamRST11-Jun-08 2:54 
GeneralRe: hi... Pin
Giorgi Dalakishvili11-Jun-08 3:16
mentorGiorgi Dalakishvili11-Jun-08 3:16 
QuestionGetting File Path Pin
Ajeet mittal11-Jun-08 2:22
Ajeet mittal11-Jun-08 2:22 
AnswerRe: Getting File Path Pin
Colin Angus Mackay11-Jun-08 2:52
Colin Angus Mackay11-Jun-08 2:52 
GeneralRe: Getting File Path Pin
Ajeet mittal11-Jun-08 3:14
Ajeet mittal11-Jun-08 3:14 
GeneralRe: Getting File Path Pin
Ashfield11-Jun-08 4:54
Ashfield11-Jun-08 4:54 
QuestionSpell Checking with C# Pin
RajeswariTholeti11-Jun-08 0:12
RajeswariTholeti11-Jun-08 0:12 
I have a windows application, where i should find the spelling mistakes from a list of xml files.I used the following code and am able to list the misspelled words. The problem is, I have more than 1000 such xml files. Everytime a spell check is happening in an xml file, one Microsoft Word window is opening. To spell chek 1000 such xml files, 1000 word windows are opened at the sametime. But still, i have closed all those windows using code. Eventhen, every window is opened and then it is getting closed. This is visible to the user. Is there any way to hide the Microsoft Word window to the user? Or can i do spell checking without opening word? Please suggest me.

Thanks in advance.

The code i used is

Word._Document doc= app.Documents.Add(ref template,ref newTemplate,ref documentType,ref visible);
           app.Visible=false;
           doc.Windows.Application.Visible=false;
           doc.Words.First.InsertBefore(strDesc);
           Word.ProofreadingErrors we=doc.SpellingErrors;
           iErrors=we.Count;
           for (int i=1; i<=we.Count;i++)
               strErrArray.Add(we.Item(i).Text);
           app.Documents.Close(ref SaveChanges,ref OriginalFormat,ref RouteDocument);


Please suggest me a good solution.
QuestionControl suggestion Pin
N a v a n e e t h10-Jun-08 21:23
N a v a n e e t h10-Jun-08 21:23 
AnswerRe: Control suggestion Pin
dan!sh 10-Jun-08 21:49
professional dan!sh 10-Jun-08 21:49 
Question[Message Deleted] Pin
sampath Jayasinghe10-Jun-08 11:11
sampath Jayasinghe10-Jun-08 11:11 
AnswerRe: Can there be links in Internet explorer history with out visiting those Pin
dan!sh 10-Jun-08 20:26
professional dan!sh 10-Jun-08 20:26 
QuestionDiscarding Keyboard-Events for GUI Pin
J. Holzer10-Jun-08 7:01
J. Holzer10-Jun-08 7:01 
AnswerRe: Discarding Keyboard-Events for GUI Pin
dan!sh 10-Jun-08 20:24
professional dan!sh 10-Jun-08 20:24 
QuestionRe: Discarding Keyboard-Events for GUI Pin
J. Holzer10-Jun-08 21:03
J. Holzer10-Jun-08 21:03 
AnswerRe: Discarding Keyboard-Events for GUI Pin
dan!sh 10-Jun-08 22:13
professional dan!sh 10-Jun-08 22:13 
GeneralRe: Discarding Keyboard-Events for GUI Pin
J. Holzer10-Jun-08 23:22
J. Holzer10-Jun-08 23:22 
QuestionDeploying windows application Pin
mrcsn9-Jun-08 2:58
mrcsn9-Jun-08 2:58 
AnswerRe: Deploying windows application Pin
Christian Graus9-Jun-08 3:25
protectorChristian Graus9-Jun-08 3:25 
GeneralRe: Deploying windows application Pin
mrcsn9-Jun-08 4:07
mrcsn9-Jun-08 4:07 
AnswerRe: Deploying windows application Pin
ilprincipe9-Jun-08 20:41
ilprincipe9-Jun-08 20:41 
QuestionWhich API is used for changing the video settings. Pin
balaji_vbr8-Jun-08 1:24
balaji_vbr8-Jun-08 1:24 
QuestionDrawing on Desktop Pin
jamie5508-Jun-08 0:34
jamie5508-Jun-08 0:34 
AnswerRe: Drawing on Desktop Pin
Giorgi Dalakishvili8-Jun-08 20:37
mentorGiorgi Dalakishvili8-Jun-08 20:37 
GeneralRe: Drawing on Desktop Pin
jamie5508-Jun-08 22:53
jamie5508-Jun-08 22:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.