Questions tagged [documents]

293 questions
0
votes
1 answer

Acrobat Function MenuItemExecute("DIGSIG:CompareDocuments") not working in server

Someone has any idea why the function MenuItemExecute("DIGSIG:CompareDocuments") wouldn't work when running on a WCF web service deployed in a server? when I run it locally it runs just fine, does the job it is supposed to do. But when I deploy the…
Marco Leite
  • 88
  • 1
  • 1
  • 7
0
votes
1 answer

How to change a NSMutableDictionary int value

I have a StateArray.plist set up with 50 dictionary entries each containing a string with the name of the state and a number 0. What I want to be able to do is change the 0 to a 1 through a segmented control and save the updated plist. The code I…
None
0
votes
1 answer

Why does Apple's PackagedDocument MacOS iCloud sample project not find URLForUbiquityContainerIdentifier?

I have been experimenting with iCloud sample code and tutorials in order to develop a syncing system between our MacOS and iOS products. On the iOS side I have had no problem building and running code that manipulates data in an iCloud Documents…
0
votes
1 answer

Generating documents from LDA topic model

I'm learning a topic model from a set of documents and that's working well. But I'm wondering if any existing system will actually generate new documents from the topics and words in the model. Ie. say I want a new document of topic 0, will any of…
ten
  • 115
  • 1
  • 8
0
votes
3 answers

C Sharp ExcelParser throws exceptions on empty cells

So, im trying to make an Excel documents parser, and everything goes fine, until it hits empty cell in Excel. Then it throws an exception *"Microsoft.CSharp.RuntimeBinder.RuntimeBinderException" occured in System.Core.dll" namespace ExcelParser { …
SLy_huh
  • 145
  • 2
  • 16
0
votes
1 answer

Durable documents folder?

To read and save data from my App I want to use documents folder of the user. When debugging, this is mapped to somewhere else. But I want to have the "real" user document folder. I want to avoid to use a fixed path name to my user when debugging.…
Peter71
  • 2,180
  • 4
  • 20
  • 33
0
votes
2 answers

Can you modify the Date Created property on Sharepoint 2010 documents?

I'm working on migrating our company's documents from a generic file server to Sharepoint 2010 and was wondering if there was any way to keep the original Created Date property from the documents so it shows up in Sharepoint with the original…
Shawn Steward
  • 6,773
  • 3
  • 24
  • 45
0
votes
2 answers

Update a collection of documents with mongodb

I have the following two documents in a mongo collection: { _id: "123", name: "n1" } { _id: "234", name: "n2" } Let's suppose I read those two documents, and make changes, for example, add "!" to the end of the name. I now want to…
TheZuck
  • 3,513
  • 2
  • 29
  • 36
0
votes
0 answers

Encrypting .rtf and .docx files programmatically using java

I am able to encrypt and decrypt .txt files using RSA algorithm in java. How can I do same for .rtf and .docx files? Update: other files are encrypting but generating zero byte size file !! here is the code public void encrypt(String inputFile,…
Abhinav Tyagi
  • 5,158
  • 3
  • 30
  • 60
0
votes
1 answer

How can I change a file to read only when a user is viewing it?

I want to enable only one user at a time, to edit a file. File would be edited through either tinyMCE or another WYSIWYG editor. Example: When User A is editing file f, user B will have to wait for User A to come out of editing. How can I make…
nlangerdev
  • 122
  • 15
0
votes
1 answer

iOS File Browsing app

I am attempting to create a file browsing app for iPads. I'm reluctant to use another app, such as Documents5, because I want to custom design it and bring in features we need. Essentially I am looking to create an almost identical app to Documents5…
0
votes
1 answer

R: Change multiline character to single-document corpus

I'm reading in a file of tweets. Each tweet is on its own line. When I use readLines(), the result is a character with thousands of lines. Using the tm package gives me a VCorpus object with thousands of documents, and the resulting…
Vincent Rupp
  • 617
  • 5
  • 13
0
votes
2 answers

Documents/Images display fine in Simulator, but not on my device

My application is running fine on the simulator, but not on the device. Basically, any documents from the web (PDF, Word, M4P videos) are working great on the simulator (and can be accessed from Safari on the iPhone). However, running on the…
Phamer
  • 207
  • 2
  • 7
0
votes
3 answers

PList Chicken/Egg Scenario

I want to read/write to cache.plist If I want to read an existing premade plist file stored in the resources folder I can go: path = [[NSBundle mainBundle] bundlePath]; NSString *finalPath = [path…
David van Dugteren
  • 3,879
  • 9
  • 33
  • 48
0
votes
1 answer

Fill Documents directory manually on Android device

I have the following code returning YES in both cases: File documents = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS); Log.d("DOCUMENTS", documents.exists() ? "YES" : "NO"); File subdir = new…
shadowhorst
  • 1,480
  • 13
  • 21