-When working with Microsoft word document getting error like (Word Application Scope: The file appears to be corrupted.) .
-How can i resolve this problem.
May be there is a problem in your input word file. Check it manually and fix the error then execute the bot it works.
Hope it helps!!
Hi,
Use this c# code to repair word file.
using System;
using Microsoft.Office.Interop.Word;
namespace WordFileRepair
{
public class WordRepair
{
public void RepairWordFile(string filePath)
{
Application wordApp = new Application();
try
{
// Open the Word document
Document doc = wordApp.Documents.Open(filePath);
// Perform any necessary repair actions here
// Save the repaired document
doc.Save();
// Close the document
doc.Close();
}
catch (Exception ex)
{
Console.WriteLine("Error repairing Word file: " + ex.Message);
}
finally
{
// Quit Word application
wordApp.Quit();
}
}
}
}
-Hiii @Jayesh_678 can u plz help me for code?
-I want to Extract the wrong spell word from Paragraph in Word File.
-Can u plz help me for to create VB Script for that .
-so that VB Code i can use in Invoke Code activity.
Hi,
Please create another post for this & tag me. Meanwhile I am working on your query.
Thanks
Hi
Vb script:-
Dim wordApp
Set wordApp = GetObject(,“Word.Application”)
wordApp.Visible = True 'Optional, to make Word visible
Dim doc
Set doc = wordApp.ActiveDocument
Dim range
Set range = doc.Content
Dim words
Set words = range.Words
Dim spellChecker
Set spellChecker = wordApp.Application.CheckSpelling
Dim misspelledWords
misspelledWords = “”
For Each word In words
If Not spellChecker.CheckSpelling(word.Text) Then
misspelledWords = misspelledWords & word.Text & vbCrLf
End If
Next
MsgBox “Misspelled words:” & vbCrLf & misspelledWords
Thanks