|
I want to write an application which may have multiple documents in a single window via a tabbed interface. Should I avoid the NSDocument architecture (the Cocoa Document-based Application template)? As far as I can tell, it supports only one or more ...
Started by titaniumdecoy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I tried shoehorning an NSDocument app into a single window, allowing you to wrap the document "windows" in whatever fashion you please, but still retain and refactored out the document....
The benefits of the document-based application.
|
|
I'm trying to read a single XML document from stream at a time using dom4j, process it, then proceed to the next document on the stream. Unfortunately, dom4j's SAXReader (using JAXP under the covers) keeps reading and chokes on the following document ...
Answer Snippets (Read the full thread at stackoverflow):
I don't think that the SAXReader is smart enough to stop when it gets to the end of the first document the beginning of the next document....
Most likely, you don't want to have more than one document in the same stream at the same time.
|
|
Hi games, I have 5 different infopath forms.on sharepoint site , i want to upload them in single document library. But when i am going to do this it is overwriting existing form. What i have to do. Is that possible to upload all 5 forms in single Document...
Started by Lalit Dhake on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In case you are submitting form directly from InfoPath then you need to change your Main Submit... .
Uploading the form with same name would result in overwriting the existing one .
The only way to do it would be to rename the each form and use unique name .
|
Ask your Facebook Friends
|
You are joining a project to maintain an existing system. There is no written documentation at all, but the previous team offers to write one piece of documentation. And they are going to let you decide what it should cover: What is the single most important...
Started by Arne Evertsson on
, 20 posts
by 20 people.
Answer Snippets (Read the full thread at stackoverflow):
The single biggest help would of been.
Failing that, I would definatly say a software build document running behind schedule, clients laying siege to our office, etc).
For the original development team.
|
|
Let's suppose i make an application in C#(winforms), we can run multiple instances of the same application by just running the exe[clr], i want that there should be only one instance allowed... i think its close to the defination of SDI [single document...
Started by Moon . on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Only one instance of Form and here Creating a single-instance application
Another good solution would.
|
|
One of my users has a word document about 8mb in size. It's about 30 pages and contains a number of pictures. When she tries to one the file it appears to be corrupt, with all her formatting lost and with the document now about 5000 pages long. Opening...
Answer Snippets (Read the full thread at serverfault):
This should help you define whether it's the document.
The Microsoft Word Viewer - this should just be able to view the document straight-out without using any of the pre-installed Word dependancies.
|
|
What OSS (or free) tools are available for drafting a single source for documentation that can be used to generate manuals? Specifically, in the following formats:
HTML website PDF document Embedded (within an application; possibly HTML) 1 Text (optional...
Started by Dave Jarvis on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The....
It can output HTML and Docbook, which can be rendered into PDF or other formats .
AsciiDoc isn't an XML source format though, instead it opts for a simple text format .
One that satisfies most of your requirements, that I've used before, is AsciiDoc .
|
|
I have the text from a PDF document available to me, and I want to display snippets from the text everywhere the user-entered search phrase appears. Say the search term is"iphone", I want to display 200 characters around each iphone word instance in the...
Started by Swami on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Pseudocode:
int start = -1; int index = str.IndexOf(search); while (index != -1) { print str.Substring(index-100, index+100); index = str.IndexOf(search, index); }
You could do this with a regular expression:
\s.{0,100}iphone.{0,100}\s
This says "match... .
|
|
I am trying to get a particular search to work and it is proving problematic. The actual source data is quite complex but can be summarised by the following example:
I have articles that are indexed so that they can be searched. Each article also has ...
Started by adrianbanks on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The implementation....
To do this, I had to hook into Lucene's querying and just override a single method.
What about and combining document hits as appropriate.
Mechanism of storing a role in the index alongside the other fields in the document.
|
|
In my old job I used XMLSpy to do my XML authoring and editing, but now I require a free plugin for Eclipse to do this. My basic requirements are:
- General XML document editing - Creating XSD files - Creating WSDL files
Can you recommend a free Eclipse...
Started by rmcc on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I have positive experience with....
To write XML/XSL files you can use oxygenxml
Or the free version of editix
In the free department, WTP (Web Tools Platform) (in its latest version) does include a lot of features,
including schema creation/modification .
|