documents

Show XPS document in webpage without a viewer

Hi, Im looking for some information or code to display a XPS document inside a webpage (aspx, vb) without using a document viewer control, i need display the file only for read the document.. thanks :D ...

PList Chicken/Egg Scenario

Hi, 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 stringByAppendingPathWithComponent@"cache.plist"]; NSMutableDictionary *root = ... But then I wish to read it from the iPhone. Can't,...

Any succesful document management sytem (application using documents intensively) using sql server filestream?

Did anyone create a Document Management System using SQL SERVER's Filestream? By this I mean: if an application makes intensive use of documents is filestream a good option, or in those cases it would be better to go for another solution? I understand this depends on many factors, but in general my guess is that if "<5%" than server lo...

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

Hello. 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 iPhone, they don't display anything. Here's some sample code: // Set up the URL d...

Sharepoint | webpage search for document library

Dear All, I totaly new to sharepoint, I would like to create a simple webpage, inside WSBS2008, to search a specific document library. The search should identify the filename of the files and retrive a list of them How should I do it? Can anybody help me starting with this? BR Gameiro ...

Where is the Documents directory in iphone sdk

I am trying to save a .txt file to the documents directory in order to read and write to it. Is the documents directory the same as resource? If so, what is working code that will let me read and write a NSString to that .txt file? I want to actually know where in xcode, either resources or wherever, that i can create that .txt file. ...

How to index documents on file server and provide a google like web interface

Hi, I have lots of documents, PDFs, etc. in a file server which I need to be indexed and searchable from a web interface like a search engine. Any ideas on any software that might do the trick? Thanks ...

Functional Design and Technical Design Documents for a Web Application

Hi All, I am going to work on a Web Application which I have to start with Gathering the Business Requirements up on which I need to develop Functional and Technical Documents. I have not developed Functional and Technical design documents on my own, could you let me know how to start and what are the things I need to take in to conside...

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 Creation date rather than the date it was added to Sharepoint. Is this possible? We're current...

iPhone Documents directory maximun size

Hi! I'm just wondering due to new personal project which is the limit (in MB or GB) of documents directory of my app. I just wanna save a lot of photos, so, has documents directory a limit for archiving downloaded photos? Will Saving 300MB of photos produce slow downs on 3G? If there is no limit, I think that limit shoud be the 8 16 32...

Creating a "My Documents" browser like in the iPad iWork Apps

Keynote, Numbers, and Pages all have a top level "My Documents" browser where you can create, delete, and select for editing all of the documents you've created so far. I'd like to create a document browser like this for an iPad app, but I am not sure where to start. I've Googled and searched here on Stackoverflow, but I haven't found a...

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 have is below and won't save the changed number. -(void) viewWillAppear: (BOOL) animated ...

Changing and saving NSMutableDictionary values

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 and segmented control position. The code I have is below. Here is my .h file #import <UIKit/UIKit.h> #...

OpenXml: Copy OpenXmlElement between documents

Hi, I have two Word documents (WordprocessingDocument), and I want to replace the contents of an element in the first with the contents in the body of the second one. This is what I'm doing right now: var docA = WordprocessingDocument.Open(docAPath, true); var docB = WordprocessingDocument.Open(docBPath, true); var containerElement =...

update embedded documents mongodb with mongoid

Hello frens.. I am having problem updating the embedded documents in mongodb. I have a following scenario. A User model has address as the embedded docs. I am able to embed the address to the parent model ie; User model but i still cant figure out how to update the address embedded even though i have the _id of the address embedded Plea...

Phonegap offline storage

Hi and thanks in advance, I'm working on a phonegap iPhone app which downloads content from the network in the form of HTML docs with text, images, and embeded HTML5 videos. I want to download these documents as they're available and store them locally, for further reading in offline mode. I've searched a bit and found that the optimal...

manage uploaded files in database or file system?

I'm going to incorporate the feature for my users to upload small files which are under 2mb (jpg, gif, pdf and docs). For page loading times purposes and generally managing files in future, can you recommend is it best to have the files uploaded to the filesystem (and link to it via the database) or upload to the database directly as a B...

Shipping Documents Items with an iPhone App

My iPhone app uses a small database to store its settings and saved files. How can I ensure that the default database, with its default settings, gets distributed to anyone who downloads it along with the application files? EDIT Sorry, I was in a rush when I posted this. I forgot to mention that the database needs to end up in the 'Docu...

iPad app documentsw folder

Is there a way to tell iTunes not to backup the contents of the apps documents folder? ...

Getting an iOS application's "~/Library" path reliably

This Apple tech note: http://developer.apple.com/library/ios/#qa/qa2010/qa1699.html suggests storing "internal" user documents in a subdirectory off of ~/Library. But I can't find one of the pre-created search domains that would get me this. What's the best/most correct/least likely to ever break way of constructing this path? Thanks....