Questions tagged [documents]
293 questions
2
votes
1 answer
Scanned Image to Readable Text
I am wondering is there a way to get scanned image with text to be converted to readable text by writing code for it? Is that possible?

AAA
- 3,120
- 11
- 53
- 71
2
votes
1 answer
Cancel documents in the printer queue from java in windows
Is it possible to cancel a print job once it has already been put into the document queue in windows with java code?

user469650
- 51
- 2
- 4
2
votes
0 answers
CouchDB 1.5.1 missing documents | "TimeOut", "Reason for termination == killed"
I'm using couchDB to save importants documents and i've been seeing a lot of crashes in my logs lately.
Moreover, all my documents are missing. My database had 3GB before the crashes,
today my database has only 2MB. Apparently i lost 3000 documents…

Cicero Nascimento
- 21
- 1
2
votes
0 answers
How to reference in a json file a folder placed on Documents Folder (iOS)
I am integrating a game made with Cocos2d-js into my native app with xcode7. In order to do that, you need to import some resources folder to your xcode project and also a file called project.json.
On this project.json you say where your resources…

jiglesiasf
- 61
- 4
2
votes
1 answer
How to add JournalArticle with images and/or docs to Liferay 6.2?
I'm newbie in Liferay and I need to parse some XML documents to put them into Liferay. By now, I'm able to create and add the JournalArticles into Liferay. The problem I'm facing is that those xml have images or documents and I'm not able to upload…

js_g
- 71
- 7
2
votes
2 answers
Elasticsearch curl query: List of indices having 0 documents
I am trying to get a list of all of my Elasticsearch indices that have 0 documents.
My approach was to query _cat/indices
curl -GET 'http://localhost:9200/_cat/indices' -d '{
"query": { "match": { "docs.count": "0" } }
}'
But it does not seem…

halpsb
- 1,106
- 2
- 18
- 28
2
votes
1 answer
C++ Save a text document
I've been working on my game and I can easily save my text document, everything works perfectly. My question is, how can I save the text document into a file called "Saves." Here is my code.
Also! I get the input for the char* name…

Ryan12345
- 35
- 1
- 8
2
votes
2 answers
Open source library to convert DOC and other MS-Office files to image(s)
Can you recommend an open source library (C or C++) to convert MS Office files into a set of images?
I am evaluating ImageMagick and while it does support PDF files, it does not work with MS Office files.

user38307
- 21
- 1
- 2
2
votes
2 answers
ArangoDB upgrade loses data
I feel I'm doing something wrong with the ArangoDB upgrade process. The end result from the upgrade is that my databases exist, my users exist, my collections exist, but there are no documents in my collections. Obviously this is an issue. I've had…

skinneejoe
- 3,921
- 5
- 30
- 45
2
votes
2 answers
How to display (converted) Word document content in Sharepoint
There is Page Viewer Web Part which can display HTML page. Is there another webpart that can display the content of the Word document or alternatively a way to convert a Document from inside OOTB Sharepoint?

user316663
- 85
- 1
- 3
- 8
2
votes
2 answers
Multipage WIA scan (docfeeder) scans 1 page and blocks scanner
Using C# (VS2008) and WIA - scanning to TIFF format;
When I use the scanner for 1 page on the flatbed or document feeder the method executes without any problem.
When I load multiple forms into the feeder the execution halts after scanning the first…

riffnl
- 3,248
- 1
- 19
- 32
2
votes
1 answer
Best way to retrieve certain field of all documents returned by a Lucene search
I was wondering what the best way is to retrieve a certain field of all documents returned by a Searcher of Lucene.
Background: each document has a date field (written on) and I would like to show a timeline of all found documents, so I need to…

Philipp
- 21
- 2
2
votes
0 answers
Switching on/off iCloud on iPad causes app to crash
I have an iCloud enabled app which works well. However, on testing, when my app is running and I either switch off or on Documents & Data for my specific app, via iCloud Settings, it crashes.
The only information for my crash in xCode is the…

Fittoburst
- 2,215
- 2
- 21
- 33
2
votes
1 answer
Mongoose find in referenced document properties
I'm going nuts on a query to find a match based on referenced document properties.
I've defined my schema like this:
mongoose.model('Route', new mongoose.Schema({
user: {
type: mongoose.Schema.Types.ObjectId,
ref: 'User'
…

Wouter
- 23
- 1
- 5
2
votes
2 answers
Adding file to Documents Directory (or elsewhere)?
I want to initialize my app with a small sqlite3 DB. I tried to put it in the Documents directory, but sometimes it copies it with zero size and sometimes it doesnot copy it at at all.
How sholud I initialize my app with a DB full of info?
Thankyou

Meir
- 994
- 12
- 25