some one just help me with this! why isn\'t this code working.I don\'t find much tutorials on the internet too.
Excel.Application xlApp;
Excel.Workbook xlWorkBoo
This code worked finally for me!!!. Pulled the data from Access Db and stored as a column in Excel and used the code to identify the wrongly spelled words in the excel sheet.
for (int y = 0; y
The selection of the cell was the part which got me busy. Finally
if (!(xlApp.CheckSpelling(xlWorkSheet.Range["A" + (y + 2) + ""].Value.ToString(),
udict, 1033)))
worked. It showed "chk" against every wrongly spelled word.