My dataview is pointed to a Document Library. I noitced files in folders and subfolders don't list - only the folders themselves.
Is there any way to list files in a particular folder or all files in all folders?
What I'm trying to do is tie a folder to entries in a custom list. I'd like a folder for every ID in that custom list. When...
I'm not quite sure if I can post non-programming questions.. But it's certainly related to web dev.
I'm looking for good legal resources/content for our company site.. specifically about terms of use, what's "proper" to post in our forums, etc.
Stackoverflow has a nice legal page with comprehensive info. I googled variations of legal...
Hi!
I have small COCOA Mac OS application to play with core data.
I have overridden default save function to do extra job after saving document (automatically save a zip copy also).
Every time I save - program crashes with EXC_BAD_ACCESS in line where I call [super writeToURL ...]
The good part is - document is being saved properly. He...
I need to access a word document with an image and then process that image for patterns. Is there a way to read a word document and store it as IplImage in opencv?
...
I'm trying to print C# code from Visual Studio 2010 to a Konica BizHub Color Printer. Only the line numbers are printing in color. Does anyone know if there is some Visual Studio setting or plug-in to allow the text of the code to be printed in color?
...
For a small-medium sized NGO with little money, I am looking for a simple document management system (NOT a Web CMS). The requirements are relatively simple :
Web based
Free (as in free beer) or very cheap, and better if it is open-source too
Able to store electronic documents (Word, PDF, ...) and scanned paper documents (in PDF/jpeg/...
How can i access document property of already running explorer processes. i am using following line of code to get process.
$ie2 = Get-Process |where {$.mainWindowTItle -eq "Windowtitletext"} | where {$.ID -ne $ieParentProcessNumber}
now i want to do some processing on this processes like $ie2.Document etc.
...
Does anyone know of a good piece of open source software or system for doing living policy documents?
Constraints:
Automagically generates table of contents
Authorization levels and control
Quickly sort sections and swap them around without losing formatting
Management sections invisible to non-managers
Automagically assigns section...
Are there general reasons not to deal with Document's and Element's prototype?
I like to create my own little framework, because my current project doesn't need the mass of features of the existing frameworks.
I don't need to support browsers which don't support Element/Document-constructor and also will not execute scripts that are no...
I'm trying to figure out if it is possible to create a custom document library template for SharePoint 2010. When a user clicks on the Libraries link on the quick launch menu of a new SharePoint site, and then clicks the Create button, the Create dialog is launched.
I know this dialog window hosts a Silverlight control, but obviously th...
I have a following association
Class Person
include Mongoid::Document
embeds_many :employments
end
Class Employment
include Mongoid::Document
references_many :centres
end
class Centre
include Mongoid::Document
referenced_in :employment
end
Now when I tried
Person.first.employments.first.centres.build it gav...
I think I might be using the wrong words, however I am looking for books/website on pre-programming design. Not patterns but use cases, requirements etc. I would love a book that goes over all the preparation with the UML diagrams etc.
Any help would be greatly appreciated.
As well if there is a better term to use then design document pl...
Is there a way to sort sub docs in a mongo query? Example(Blog Collection):
{
"_id" : ObjectId("4c69d19532f73ad544000001"),
"content" : "blah blah blah",
"comments" : {
{"author": "jim", "content":"comment content 1", "date" : "07-24-1995"},
{"author": "joe", "content":"comment content 2", "date" : "07-24-1996"}
{"...
Right now I am working on MongoDB in ASP.NET and just gone through an article in which it has taken a blog post example and mentioned the following steps to update comments (sub document).
The blog was taken a main document
Comments were taken as sub document and posted along with main document
When we need to insert a new comment to a...
Hi,
I have this html file with a conditional comment.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/elements.css">
<title>Page</title>
<!--[if lte IE 6]...
I have tried my best to answer this question myself through research but I am still a little bit worried about whether I am using the right thing.
Basically I am using the DomDocument Library to build a jQuery like theme parser for my framework. Now with the web as it is today HTML is coming in different shapes and sizes e.g HTML 4, HTML...
We are having 10 documents (all 10 documents with name_s="john" or name_s="john abraham") with boosting value 10.0 in doc level out of 100 documents.
DataImportHandler is used to index the documents in xml.
We gave omitNorms="false" in a field called "text" and having schema.xml configured as below.
Default query field is "text", when i ...
I use prototype ver 1.6.0.2
Event.observer(window,'load',function(){
function1();// function with ajax request
function2();//another function with ajax request
});
It work on FireFox,Chrome but in Opera it work strange
Func2 and fucnc2 not runing but if page scroll down it runing both function immediately
Plz help.
Thanks.
...
I'm trying to learn about phpDocumentor. I usually put a classe per file. Am I forced to document file and classes? I want to document just classes (Why should i document files?) but i receive warnings...
WARNING in comment.class.php on line 8: DocBlock would be page-level, but precedes class "Comment", use another DocBlock to document ...
Hi, this one has been puzzling me for a few days now and I feel that I have barely been able to narrow it down.
I am using Java and have a wizard for the user to step through. One of the steps allows the user to select a start time & date and an end time & date to schedule some work. I thought I had the validation on the dates complete...