|
I have many documents in my Google docs. Is there any way to import to Google App docs?
Or any way to extract zipped documents in Google docs?
Started by Mirage on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Features include:
scp like syntax to list and copy documents filter documents based on folders, file names supports hosted and gmail accounts syncs date stamps override with parameters) summary of operations....
You could use the gDataCopier.
|
|
Hi all,
I've a problem: my application must convert ms word documents (imported from another system) into rtf documents, in order to be manipulated with OOo APIs and to be immune from mistakes (for coding incompatibility reasons).
I ask you: how can I...
Started by hailpam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Using....
(You can esentially control an installation of Microsoft Word) and I've installed only OOo .
Another to open, create, save word documents.
Mine were extremely picky - up to the margin sizes and picture positioning .
document formatting.
|
|
In a SharePoint document library, is there any way to store the documents on the file system instead of the database?
Started by ryan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You can make SharePoint store its documents outside the....
That said, you into a standard file system once they are added to a document library.
Documents in a SharePoint document library will always be hosted in the database.
|
Ask your Facebook Friends
|
Hi, I am new to VBA and this area. I would like to capture the document proporties like (document title, subject, author, team, manager,company etc...) while create or saving the document. This properties capture is must and i would like to implement ...
Started by chinnagaja on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
If you just want to be able to read (or modify) the properties, you can use the Office Document Property Reader to read and write properties of Office documents, without even needing Office installed saving the document, you can create....
|
|
How do I save an NSString as a .txt file on my apps local documents directory (UTF-8)?
Started by RexOnRoids on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
NSString *documentsDirectory = [paths objectAtIndex:0]; // Get documents directory [myString.
|
|
Hi I need your help if you are an expert in MOSS.
I have a system that needs to upload documents into a MOSS document library.
I decided that the easiest approach for a phase 1 system would simply be to map a network path to a MOSS Document library.
The...
Started by JL on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
SharePoint does.
The standard caveats with SharePoint document libraries and file naming conventions.
|
|
Please suggest material regarding the best practices for writing design documents.
Started by Jaswant Agarwal on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
As well, in particular the Goodies section , which has freeware sample documents and templates.
|
|
What is the best method to parse multiple, discrete, custom XML documents with Java?
Started by Matt Cummings on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There's ....
I've been using it on my last project to parse XML files up to 24MB .
I would use Stax to parse XML, it's fast and easy to use .
You will want to use org.xml.sax.XMLReader ( http://java.sun.com/j2se/1.4.2/docs/api/org/xml/sax/XMLReader.html ).
|
|
I want to store a word documents (.doc) in the database and i need to provide search over a collection of Word documents and highlight the words too.
I m using VS2005 --> ASP.NET, C#.NET, SQL Server.
Started by GayaMani on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You the contents of the Word document as text, store this along with the document and then query this new column/sqlfulltextindexing....
Word documents in Database using C#
You can store the documents as BLOBs as described above.
|
|
Hi everyone,
I'm trying to write some info to the user's documents folder (eg. C:\Documents and Settings\[userName]), but I can't seem to find out how to grab the path programmatically. Is there any way to do this? C++, not using .NET.
Thanks!
Answer Snippets (Read the full thread at stackoverflow):
WCHAR path[MAX.
SHGetFolderPath with CSIDL_PERSONAL can be used to get the user's Documents folder.
|