1
vote
2answers
77 views
MacVim set as default text editor: How to set files to open in a new tab as opposed to a new window?
I've set MacVim as my default text editor, and when I double click files it opens up a new window. Is there a way to set it to open up in a new tab instead?
0
votes
1answer
19 views
How do you turn on a hibernate filter for a particular entity by default?
Good day,
I currently have an Entity that has a where clause set on it. I want to put that where clause on a filter and have that turned-on by default (so that I won't break any existing …
1
vote
2answers
35 views
How can I alter a smalldatetime column with a default to be datetime?
I have a number of columns in my database that were originally created as smalldatetime and that really need to be datetime. Many of these columns were created with the DDL:
[columnname] …
1
vote
0answers
25 views
How to set binary mode by default when FTPing to a remote site? [closed]
I typically use the bash command line when I need to FTP something. I have found that certain FTP servers are not set to binary mode by default and unless I remember to do so, the file sent will be …
1
vote
1answer
116 views
how to print tiff files automatically
I'm having a folder which will contain only one tiff file at a time, so the moment i receive one i should be able to print it to the default printer, i have a small windows application which is …
0
votes
0answers
12 views
Extract default namespaceID from XML file
I have a file that contains a default namespace declaration, first few lines of one such here:
<?xml version="1.0" encoding="UTF-8"?>
<dodavka xmlns="urn:CZ-RVV-IS-VaV-XML-NS:data-1.2.2" …
0
votes
1answer
31 views
Default Button - Vb.NET
Hey guys,
I have a button that I want to make default, but without the border thing around the button. Is this possible to do?
Thanks.
0
votes
3answers
51 views
Alter column’s default value
Hi
I have a table which has a column 'CompanyID int not null' and its default value is set to 10. Now I want to write a query which will alter this default value to 1. How can can I do it?
Any …
1
vote
2answers
43 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
70 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
29 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
21 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
30 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
74 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
116 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:
…
