1
vote
2answers
13 views
Varying xpath-default-namespace in XML source files
I have a set of XML files that I am processing with an XSL transform. They have a default namespace, so my XSL transform must contain the declaration:
…
1
vote
3answers
64 views
Object appended to a list instance appears in a different instance of that list.
Hi,
I was writing this little piece of code as an exercise in object-oriented programming.
Here I'm trying to define a house as a list of rooms and each room as a list of devices (lamps, for …
0
votes
3answers
25 views
Default (fallback) Image with .htaccess?
I'm curious if it's possible to use .htaccess to serve up a default image when a particular image is requested that doesn't exist (note: only image-requests should raise this behavior). I know I could …
1
vote
1answer
17 views
How to set a default parameter for a vector <string> for use in a default constructor within a class?
For example, a class named Table, with its constructor being:
Table(string name="", vector <string> mods);
How would I initialize the vector to be empty?
Edit:
Forgot to mention this was C++.
…
0
votes
0answers
13 views
WPF: How to have custom button template that uses system’s button background by default?
Hi, I am creating a style that changes a ControlTemplate of a Button (it actually adds arrow on the right, so that the button looks like dropdown button (which is missing in wpf)).
Inside of …
0
votes
3answers
65 views
i need script in jquery that make the page as your default home page website in the browser
i need script in jquery / javascript that make the specific site as the homepage in the browser,
i need it compatible for all browsers , if that possible .
i dont mean it should be done …
1
vote
2answers
107 views
Null Object Pattern, Recursive Class, and Forward Declarations
Hi folks,
I'm interested in doing something like the following to adhere to a Null Object design pattern and to avoid prolific NULL tests:
class Node;
Node* NullNode;
class Node {
public:
…
5
votes
1answer
72 views
Why does Hash.new({}) hide hash members?
Ok, so I wanted to create a hash which has an empty hash as the default value. A bit weird, I know, but let's say that I thought it might be useful.
So here's what I did:
>> a = Hash.new({})
…
0
votes
1answer
19 views
change mysql data directory
Hi All,
Is it possible, if I change my default mysql data directory to other. But, will I be able to access the databases from old location.
any inputs will be a great help.
Thanks in advance
…
0
votes
2answers
38 views
WPF ControlTemplate: How to provide a default value for TemplateBinding?
I am writing a WPF control that subclasses a Button. I then provide a default style in Themes\generic.xaml, that looks like this (simplified):
<Style TargetType="{x:Type …
0
votes
0answers
24 views
Set a Default Digital Certificate [closed]
We have a site that requires SSL digital certificates and have issued client side certificates to allow users to connect. The users are now complaining that when they browse to our site they are …
0
votes
1answer
27 views
Declaring a default constraint when creating a table
Hi, I am creating a new table in Microsoft SQL server 2000 by writing the code instead of using the GUI, I am trying to learn how to do it "the manual way".
This is the code I am actually using, and …
0
votes
3answers
60 views
How to save default context settings in c#?
Hello,
could somebody tell me why I can not save dynamic data in Settings.Default.Context?
My code:
Settings.Default.Context.Add("myKey", "myValue");
Settings.Default.Save();
…
0
votes
1answer
30 views
Google Translate set default language
Maybe this has an obvious solution that I'm overlooking, but I can't seem to find the correct parameter to put in to make this happen.
Using the Google Translate widget on a site, I need to set the …
4
votes
2answers
161 views
Require a default constructor in java?
Is there any way to require that a class have a default (no parameter) constructor, aside from using a reflection check like the following?
(the following would work, but it's hacky and reflection is …
