Click here to Skip to main content
15,894,180 members
Everything / word

Word

word

Great Reads

by Arthur V. Ratz
Compute the Levenshtein distance of literal strings effectively by using the Wagner-Fischer (two matrix rows-based) algorithm.
by Christ Kennedy
In this article, you will learn about a word-processor that makes use of multiple dictionaries, pop-up definitions and an interactive multi-button picturebox expedited with a swift Sweep And Prune algorithm.
by DrABELL
Computer mouse triple-click is a convenient feature

Latest Articles

by Arthur V. Ratz
Compute the Levenshtein distance of literal strings effectively by using the Wagner-Fischer (two matrix rows-based) algorithm.
by Christ Kennedy
In this article, you will learn about a word-processor that makes use of multiple dictionaries, pop-up definitions and an interactive multi-button picturebox expedited with a swift Sweep And Prune algorithm.
by DrABELL
Computer mouse triple-click is a convenient feature

All Articles

Sort by Score

word 

16 Sep 2022 by Arthur V. Ratz
Compute the Levenshtein distance of literal strings effectively by using the Wagner-Fischer (two matrix rows-based) algorithm.
4 Aug 2022 by Richard MacCutchan
You just need a set of data (an array or collection) that you want to put in the cells. So replace (cell.RowIndex - 3 + cell.ColumnIndex).ToString() with each item of your data.
4 Aug 2022 by 0x01AA
One can address a specific cell directly by row/column index. E.g. like firstTable.Rows[1].Cells[1].Range.Text = "My Value for that Cell"; Note: Keep in mind that for office interop the index of a collection starts at '1' and ends at...
21 Dec 2022 by Graeme_Grant
I was not sure myself, so I used Google: How do change the foreground color of a table cell in word file using openxml using C - Google Search[^] and found this: How can I modify the foreground and background color of an OpenXML TableCell?[^] ......
13 Jan 2023 by Graeme_Grant
I have not worked with C# and Word, so I would need to use Google Search: c# word bookmark[^]. There are a number of promising solutions found, including this one: Using C# to programmatically find, and populate bookmarks in a Word 2010 Add-In...
4 Aug 2022 by Manojkumar-dll
I want to insert values into the cells of the table in my word file in c# using Microsoft interop and i have used foreach in the below code for dummy number that automatically insert as per the cell position i want to repace with it my own values...
21 Dec 2022 by Manojkumar-dll
i have created a table in word using OpenXML in which i have to fill a table cell (Header Table Heading) with light grey Any Help!! Thanks in advance What I have tried: TableRow tr1 = new TableRow(); ...
17 Jan 2023 by MihaljKeri
Hello, project is done in C# and relates to modifying existing Word document. How I can get text between two existing bookmarks, then iterate text line by line and change font size for each line. The goal is to have in the end; text in first line...
16 Jan 2023 by Maciej Los
Well... a bookmark is added into specific range in a document. So, you can get the range of bookmark1, then get the range of bookmark2 and finally you can select range between them. Imagine, i've got below document content: Bookmark1 Some...
17 Mar 2023 by WordHoiPolloi
To repeat, I want to copy a word from Word, paste it into the input field in the online dictionary, have the site return a result (OUTPUT), copy the output, and paste it back into Word on the next line after the word that was looked up. The word...
17 Mar 2023 by CHill60
One of these should help you https://stackoverflow.com/questions/37733233/vba-macro-to-interact-with-specific-website[^] Automate Internet Explorer (IE) Using VBA - Automate Excel[^] There are also several YouTube videos if you prefer that...
17 May 2023 by LB2371
In MS Word, I have the following Macro, that replaces dots with slashes in highlighted text: Selection.Find.ClearFormatting Selection.Find.Highlight = True Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = "."...
17 May 2023 by cmarcotte
I didn't test, and think you select a part of document manually, you apply your macro to selected text and you want your macro undo selection. As far I remember ad a final line: selection. Collapse
14 Aug 2021 by Christ Kennedy
In this article, you will learn about a word-processor that makes use of multiple dictionaries, pop-up definitions and an interactive multi-button picturebox expedited with a swift Sweep And Prune algorithm.
22 Jun 2015 by DrABELL
Computer mouse triple-click is a convenient feature
17 Jan 2023 by MihaljKeri
Hello, thanks for help, but it does not work for me, unless I did not convert it correctly from VBA to C#: Here is my converted piece of code: Word.Range oRng1 = wordDocument.Bookmarks["start_from_here"].Range; Word.Range oRng2 =...