Questions tagged [documents]

293 questions
2
votes
7 answers

Plist not saving from dictionary (to Documents)

I've been trying to save a plist of a NSDictionary to my app's Documents folder. I haven't tried this on the device yet but I'd like it to work on the simulator for testing purposes. The [self createDictionaryFromChoreList] method just creates a…
skylerl
  • 4,030
  • 12
  • 41
  • 60
2
votes
1 answer

VB Script Documents.Open throwing 424 error

So I have a vbs script: Function test2open( sSourceFile, sPDFFile ) Dim wApp ' As Word.Application Dim wDoc ' As Word.Document logStream.writeline "inside test2open" on error resume next Set wApp = CreateObject("Word.Application") …
user162827
2
votes
3 answers

How to handle changes to tagged documents in SVN

I have got few documents on trunk, they are updated for specific release and tagged with release number (documents on trunk will move on) and published across the company on release email. Problem – we are identifying changes required for the tagged…
CMKRIS
  • 21
  • 1
2
votes
1 answer

Document format for writing homeworks in Vim

I'm a college student majoring in CS, and that means I spend a lot of time poking around in vim. I'm still a complete noob, but I love editing text in the terminal--it's more fun than writing documents has any right to be. However, I'm curious if…
2
votes
1 answer

many small documents or less big documents

I have an application with many messages. Every user is able to select one message in order to send this message to an other user. Finally this message will get an flag ('message was send to: user1, user2,...) Those send informations should be…
The Bndr
  • 13,204
  • 16
  • 68
  • 107
2
votes
2 answers

listbox to text document no overwriting

hello i am using this code to save listbox1 contents to .txt document it works. but as soon i reopen the program and save new text it overwriting original text how can i make it add as an additional text rather then overwriting. thank you so much…
user2581791
  • 43
  • 1
  • 4
  • 11
2
votes
1 answer

Render Salesforce Document Object Instance Body on Visualforce Page

I have a PDF file stored in Documents in Salesforce. I need to get the Document from the Document object and render it as a PDF visualforce page. When I get the body of the docuemnt it is the form of a BLOB. However when I try to convert this to…
SalesforceQueries
  • 319
  • 3
  • 7
  • 18
2
votes
2 answers

Load audio in DOCUMENTS when UITableView "cell" is pressed

I have a UITableView displaying a llist f files in the Documents Directory... and I want it to play the audio file in the Documents directory when pressed... It runs with no errores but doesn't play the audio when pressed... -…
iDevMartin
  • 193
  • 3
  • 15
2
votes
2 answers

Disable Document Template link in Word

through our software, our clients can create Word documents based on a number of templates we provide. This has caused us some problems lately when sites have been moving servers, as documents created from templates have a link to the original…
Luke
  • 1,218
  • 1
  • 24
  • 40
2
votes
2 answers

Does UIImage's -imageNamed: method work for image files stored in 'Documents'?

My app downloads a small image file from a remote server and I am trying to display it along with some other small image files that are pre-installed in the app. I am using [UIImage imageNamed:@"TheImageName.png"] to get the images (see below for…
RexOnRoids
  • 14,002
  • 33
  • 96
  • 136
2
votes
1 answer

Display Local HTML file from documents directory in a UIWebView on iPhone

How can I display a HTML file from the Documents directory in my app? Below is the code that I'm using and nothing is showing up in my UIWebView NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); …
atomikpanda
  • 1,845
  • 5
  • 33
  • 47
2
votes
1 answer

Documents folder is empty in simulator. Where is my db.sqlite?

I read that I should find my sqlite db in this path: ~/Library/Application Support/iPhone Simulator/YOUR-IOS-VERSION/Applications/UNIQUE-KEY-FOR-YOUR-APP/Documents But the folder is empty. When I run my app in the simulator I am able to query the…
1
vote
1 answer

Read/Store iPhone documents in my iPhone app?

I am working to create an iPhone app to store documents from the device(iPhone/iPod Touch). My idea is to keep the files, documents in the app which from the Mac -> Device (iPhone/iPod Touch) -> iPhone app. I know to transfer the documents from Mac…
Yuvaraj.M
  • 9,741
  • 16
  • 71
  • 100
1
vote
4 answers

JavaScript documentations and reference?

I am having a lot of trouble finding a comprehensive set of documentation on javascript. I am in the market for something that illustrates all of the members, methods, and data types that one would encounter in regular javascript programming. For…
A.R.
  • 15,405
  • 19
  • 77
  • 123
1
vote
1 answer

Storing secondary documents in MongoDB doc

Say User2 has these objects of data, they are stored in User2.objects as an array of objects. User2:{objects:[{object1},{object2},{object3}]} If anyone other then User2 needs to query this data, like User1 needs any of those objects that pertain…
fancy
  • 48,619
  • 62
  • 153
  • 231