Tagged Questions

A word is a string of characters. A `word` may also be a fixed size group of bits, generally in multiples of 8, that are handled as a unit by a processor architecture. Questions regarding Microsoft Word should use the "msword" tag.

learn more… | top users | synonyms

15
votes
7answers
12k views

Can grep show only words that match search pattern?

Is there a way to make grep output "words" from files that match the search expression? If I want to find all the instances of, say, "th" in a number of files you do; grep "th" * but the output ...
13
votes
1answer
236 views

_MailAutoSig Bookmark missing (Outlook 2010)

I wrote an addin a while back for Outlook that adds/removes an optional tagline below the signature in an outlook message. This add-in works with no issues. I'm writing a second add-in that needs to ...
11
votes
3answers
265 views

Python- What word can have the most consecutive letters removed and still be a dictionary-valid word?

I used this hideous and inefficient implementation to find the word that can have the most consecutive last letters removed and still be a word. Rodeo, for example, is a well-known one: Rodeo, Rode, ...
11
votes
10answers
364 views

What format is your documentation in?

I am going to be writing documentation for two web services that I developed, and I started wondering what people on here do for documentation. Do you create it in an HTML file so it can be viewed in ...
11
votes
7answers
2k views

how to get a word under cursor using JavaScript

in this case: <p> some long text </p> how can i know that mouse cursor is above the 'text' word?
10
votes
3answers
396 views

A Viable Solution for Word Splitting Khmer?

I am working on a solution to split long lines of Khmer (the Cambodian language) into individual words (in UTF-8). Khmer does not use spaces between words. There are a few solutions out there, but ...
9
votes
2answers
112 views

Using low bitsize integral types like `Int8` and what they are for

Recently I've learned that every computation cycle performs on machine words which on most contemporary processors and OS'es are either 32-bit or 64-bit. So what are the benefits of using the smaller ...
9
votes
1answer
650 views

Create new Word document with macro in C#

I have this situation: I made an add-in for Word 2010 in visual studio 2010 (C#), which dynamicly adds new buttons to a new ribbon tab (data from sql database). Now when i click on a button, a new ...
8
votes
2answers
4k views

tinymce and importing / copy paste from microsoft word

i am struggling to get an accurate answer on this questions on whether tinymce supports pasting from microsoft word. i guess there may be a lot of out of date information on the web on this topic as ...
7
votes
6answers
557 views

Storing Microsoft Word 97 documents in SQL Server column

I have this database with a table which has the the following but I have no way to decypher it DATA, TYPE, FILE TYPE, SIZE, DOC TYPE 0x15234324 , Word.Document.8 ,DOC, 19968, ...
7
votes
6answers
390 views

Plural form of a word

Are there any API(s) which will provide a plural form of a certain word (e.g. cactii for cactus)
7
votes
2answers
178 views

Emacs regular expression: what \< and \> can do that \b cannot do?

Regexp Backslash - GNU Emacs Manual says that \< matches at the beginning of a word, \> matches at the end of a word, and \b matches a word boundary. \b is just as in other non-Emacs regular ...
7
votes
4answers
2k views

Mercurial and Word or PDF documents

is it possible to use Mercurial version control to track Word or PDF files? Is there any limitation or problem? THANKS!
7
votes
5answers
645 views

Python word splitting

Is there a good library can detect and split words from a combined string? Example: "cdimage" -> ["cd", "image"] "filesaveas" -> ["file", "save", "as"]
6
votes
3answers
267 views

Generate word combinations

for example this is my text : $str = 'buy new microsoft windows'; I explode text and list with array : Array ( [0] => buy [1] => new [2] => microsoft [3] => windows ) ...
6
votes
3answers
1k views

Word 2010 automation: 'goto bookmark'

I have a program written in Delphi-7 which opens a new Word document which is based on a template. Once the document is open, the automation jumps to a bookmark (predefined in the template) and adds ...
6
votes
5answers
1k views

Extract text from pdf and word files

How can I extract text from pdf or word files (remove bold, images, and other rich text formatting media) in C#? Thanks.
6
votes
2answers
2k views

Inserting newlines in Word using OpenXML

I am using openxml WordProcessingDocument to open a Word template and replace placeholder x1 with a string. This works fine unless I need the string to contain a newline. How can I replace x1 with ...
6
votes
2answers
188 views

Testing VSTO Applications?

I'm developing a Word 2007 VSTO application in VS2008. The part of the application that interacts with VSTO is difficult to test. VSTO objects behave differently than most class libraries. Their state ...
6
votes
11answers
1k views

Algorithm for separating nonsense text from meaningful text

I provided some of my programs with a feedback function. Unfortunately I forgot to include some sort of spam-protection - so users could send anything they wanted to my server - where every feedback ...
5
votes
4answers
163 views

Html to RTF conversion

What is the word(RTF/doc) equivalent of Html for the below tag. <IMG SRC = "planet.jpg" align="left" Width = "600">
5
votes
1answer
96 views

online editors for various file types, doc, dwg, image

I have a media archive with various file types on my server. If a user wants to update that file, he has to download the file to his local machine, edit it with his desktop software (Word, AutoCAD, ...
5
votes
1answer
325 views

VSTO Ribbons and Interop

Is it possible to handle button click events on a custom ribbon button from another application using interop? So if I've created a Word 2010 application add-in which creates a custom tab with ...
5
votes
2answers
810 views

Embedding word 2010 editor in a wpf application

How do I use the word editor in a WPF application? Is it possible using windows forms hosting in WPF only? Is there another way to accomplish that? I found AvalonEdit but it does not have features ...
5
votes
1answer
324 views

Building a more realistic random word generator?

I'm seen many examples of using Markov chains for generating random words based on source data, but they often seem a bit overly mechanical and abstract to me. I'm trying to develop a better one. I ...
5
votes
2answers
951 views

Library to convert Word document text to HTML

Is there a .Net open source library to convert the word dococument to HTML to display inside the webpage. I know several tools to convert word docs to html files, but my requirements is to convert ...
5
votes
2answers
899 views

Trigger MS Word macro after save event

My MS Word 2007 template has a footer with the filename in it. The user is going to open the template and do a "Save As..." to make their document. I want the filename shown in the footer to update ...
5
votes
2answers
237 views

Problem editing word file in PHP

So I need to edit some text in a Word document. I created a Word document and saved it as XML. It is saved correctly (I can open the XML file in MS Word and it looks exactly like the docx original). ...
5
votes
1answer
508 views

How do I search & replace all occurrences of a string in a ms word doc with python?

I am pretty stumped at the moment. Based on http://stackoverflow.com/questions/1045628/can-i-use-win32-com-to-replace-text-inside-a-word-document I was able to code a simple template system that ...
5
votes
3answers
3k views

VBA: Using WithEvents on UserForms

I have a Word userform with 60+ controls of varying types. I would like to evaluate the form every time a control_change event is triggered and change the enabled state of the form's submit button. ...
5
votes
5answers
1k views

Word VSTO swallows exceptions at runtime without debugging?

Place this code somewhere in a Word document level VSTO solution outside of ThisDocument_Startup (create a ribbon button, with a click event): int zero = 0; int divideByZero = 10 / zero; Start ...
4
votes
1answer
49 views

Recommend a Programmer's Dictionary for MS Word

MS Word is nothing short of irritating to use for any sort of software development work (notes, documentation, etc.), which is likely why many people use other tools (notepad++, etc.) Asides from ...
4
votes
1answer
79 views

Word interop - how to close one Word window without closing all of them?

I'm using Microsoft Word Primary Interop Assemblies to slave MS Word. My application opens up its own Word window (using an instance of Microsoft.Office.Interop.Word.Application). After the app does ...
4
votes
1answer
79 views

Unicode-ready wordsearch - Question

Is this code OK? I don't really have a clue which normalization-form I should us (the only thing I noticed is with NFD I get a wrong output). #!/usr/local/bin/perl use warnings; use 5.014; use utf8; ...
4
votes
2answers
262 views

DocBook to Word Conversion?

I need some help with conversion of DocBook files to Microsoft Word files. What exactly i need todo. Do i need an XSL file for transformation. Grateful for any help.
4
votes
1answer
62 views

Is there a tool to obtain all get all derivatives of a word in PHP?

I need to input "face" and get "facial, faces, faced, facing, facer, faceable" etc. I've come across some ineffective programs which do the opposite, such as SNOWBALL and a couple of Porter Stemming ...
4
votes
3answers
476 views

Insert an image into a word document in Java

Can someone point me in the right direction on how to insert an image into a word document in Java?
4
votes
3answers
164 views

Algorithm for determining which words make a phrase popular

Suppose I had a list of slogans (short, multi-word phrases), and people had voted for the ones they liked best, and I wanted to assess which words, if any, made some slogans more popular than others. ...
4
votes
3answers
560 views

C# - Create MS Word file without having MS Word installed

How can I create Word files using Visual Studio 2008, without Word on my PC? Do I need to have Word installed on my PC, to be able to create Word files using Visual Studio 2008? Thanks in advance!
4
votes
2answers
823 views

C#: Opening a Word File in a FileStream for reading while it is opened in Word

I am trying to open a Word file for reading using a FileStream in C#. I hacked a quick sample application which consists of a textfield and a button to trigger the creation of the stream. The sample ...
4
votes
4answers
579 views

How to prepare a Word 2007 document so that C# can pull data out of it semantically?

I have a friend who is writing a 400-page book in Microsoft Word 2007. Throughout the book he has 200 stories each which consist of numerous paragraphs. When he is finished writing the book, he ...
4
votes
1answer
149 views

What's the easiest way to fill gaps in a list of numbers?

I'm having some trouble explaining the question in a single line for the title, but hopefully this description will provide you with enough insight to fully understand my question: I have a few ...
4
votes
7answers
813 views

how to use php to include an image in a word file?

Somebody has asked me to make an app in php that will generate a .doc file with an image and a few tables in it. My first approach was: <?php function data_uri($file, $mime) { $contents = ...
4
votes
1answer
470 views

VBScript and multilevel OLE?

I have made a vbscript to target some computers and do wmi queries on them, and my boss wants this data to be put inside a document. The problem is that this document is a Microsoft Word document with ...
4
votes
3answers
220 views

How do I pass a Range to a Sub in Word VBA?

I know this sounds simple, but seemingly it is not. If I write this in Word VBA, it always says "incompatible types" - why? And how do I make it work? Thank you very much for your help! Sub ...
4
votes
9answers
3k views

WinWord.exe won't quit after calling Word.Documents.Add - Word .NET Interop

I'm running into the classic scenario where, when creating Word COM objects in .NET (via the Microsoft.Office.Interop.Word assembly), the WinWord process won't exit even though I'm properly closing ...
4
votes
9answers
395 views

Optimizing word count

(This is rather hypothetical in nature as of right now, so I don't have too many details to offer.) I have a flat file of random (English) words, one on each line. I need to write an efficient ...
4
votes
1answer
653 views

Custom Word Bibliography Source Template

Having looked through the Word help and online resources about customising bibliographies in Microsoft Word, and finding several posts on customising the 'style' and XSL transformation 'layout' of ...
4
votes
10answers
649 views

Code Golf - Word Scrambler

Please answer with the shortest possible source code for a program that converts an arbitrary plaintext to its corresponding ciphertext, following the sample input and output I have given below. ...
4
votes
4answers
581 views

From C#, open an arbitrary application

Related question [stackoverflow] here. I'm trying to do the above, but I want to take the process one step further. I want to open an arbitrary file using the default editor for the file type. From ...

1 2 3 4 5 26