All Questions
22,920,412
questions
2
votes
1
answer
595
views
How to position editbox's cursor in shoes?
Shoes is very handy GUI tool. I would like to do a search form so that a user is helped to navigate through larger texts for editing. For this I need to move the cursor within an editbox element.
...
79
votes
5
answers
30k
views
Adding line breaks to comments for Intellisense [duplicate]
Does anyone know how to insert a line break into a summary comment in order for the line break to be reflected in Intellisense documentation?
To clarify, assume code documentation..
/// <summary&...
2
votes
1
answer
1k
views
dojo.require issues
I'm having trouble configuring my initial installation of dojo to include the widget framework correctly.
Following most of the code I see, including dijit should look like this:
dojo.require("...
0
votes
1
answer
140
views
Can one element accept sortable droppables on behalf of another?
I have two connected sortable lists, but each one is in a larger block element. Something like:
<div class="items_box">
<ul class="items">
<li>Item</li>
&...
0
votes
3
answers
989
views
SQL Server won't perform regular expression validation on XML column
I have an XML column in my table which contains this xsd snippet:
<xsd:element name="Postcode" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
...
35
votes
14
answers
93k
views
Why would an aspx file return 404 ("The page cannot be found")
Why when I access an aspx (e.g., http://www.example.com/foo.aspx - not the real site) through IE6 would I get a 404 Error (i.e., "The page cannot be found") in IIS6
I've got scripts enabled for the ...
1
vote
2
answers
2k
views
How does one parse an XML document after first validating against a DTD in VB6
I am attempting to write a XML parser in VB6.
The standards that the XML is based off of comes with a DTD to verify the XML before you begin parsing. I have also written a sample XML file so that I ...
0
votes
3
answers
714
views
Trouble with Web Service using COM object
I have a VB.NET web service that is calling a Interop COM object. When I make multiple calls to the web service at the same time, the web service processes fine until it gets to calling the first ...
3
votes
3
answers
10k
views
Generating SQL Server DB from XSD
Duplicate: Generating SQL Schema from XML
In a project i am working on, i have a need to support either a strongly-typed dataset for storing the data as XML, or storing the data in sql server. Now i ...
10
votes
3
answers
23k
views
Hibernate Criteria API - HAVING clause work arounds
I've written a query using Hibernate Criteria API to grab a summation of a particular value, now I need to be able to restrict the result to rows where that sum is greater or equal to a particular ...
11
votes
2
answers
12k
views
Dojo addOnLoad, but is Dojo loaded?
I've encountered what seems like a chicken & egg problem, and have what I think is a logical solution. However, it occurred to me that others must have encountered something similar, so I figured ...
2
votes
2
answers
2k
views
What do you use to Profile SQL Server 2005 Express?
I've got a problem on an SQL Server 2005 Express instance, and I need to see exactly what is being run, since what I believe is being run works fine when I run it from Management Studio.
It appears ...
5
votes
1
answer
4k
views
How do I hook global shortcuts in Windows?
I remember using a program, some years back, that allowed me to fine-tune my monitor's settings with custom gamma ramps and other adjustments. It had the ability to create different screen-settings ...
1
vote
1
answer
305
views
What are some good C++ resources for effectively using Apache XML Security?
I'm looking for some resources that allow me to understand how to use this library, particularly for signing XML. Most of what I found out there is Java related, and I would prefer to get ...
71
votes
3
answers
50k
views
What is the max key size for an array in PHP?
I am generating associative arrays and the key value is a string concat of 1..n columns.
Is there a max length for keys that will come back to bite me? If so, I'll probably stop and do it differently....