1
vote
1answer
16 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
4answers
103 views
stl vector and c++: how to .resize without a default constructor?
how could I tell STL, specifically for the method resize() in vector, to initialize objects with a constructor other than default, and with which parameters?
I mean:
class someth …
0
votes
1answer
14 views
Changing the default TestRunner in Eclipse.
All tests should be run with jUnit3, if i run a non-configured Test, it tries to use the default-TestRunner (jUnit4).
So, i have to go into the run/debug configuration, change the …
0
votes
1answer
29 views
MySQL Default Keyword usage errors
When am trying to set default date and default sysdate am getting following errors:
MySQL Query:
create table product_offer_type(object_id INT(19), snapshot_id INT(19), PRIMARY K …
1
vote
5answers
101 views
default arguments in constructor
Can I use default arguments in a constructor like this maybe
Soldier(int entyID, int hlth = 100, int exp = 10, string nme) : entityID(entyID = globalID++), health(hlth), experienc …
0
votes
2answers
38 views
Default Picker Value iphone
Is there a way to set a default value for a picker? I save the last selected row from all the pickers and I want to be able to have the pickers load those saved rows at start up. …
2
votes
2answers
72 views
Drupal - Set default value in hook_form_alter?
Trying to prepopulate some of my form fields, and am using hook_form_alter(). I've tried a couple of different ways, but in both cases, the fields still come up empty. I'm assumi …
1
vote
2answers
44 views
What’s the default heap size for IBM’s J9VM?
I have IBM's J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3) installed. After getting an OOM, the size of the heap dump is 383MB. How much heap does the JVM have?
The reason why I ask is …
0
votes
2answers
48 views
Creating a default image in a UserControl
I have a User Control that has one child - an Image. I'm trying to set a default image using code in the User Control's default constructor to display an image resource, but so far …
1
vote
1answer
42 views
asp.net: RewritePath to Default Document not Working as Assumed
I am encountering an unexpected behavior:
The following statement works fine:
Context.RewritePath( "~/Default.aspx" ); // redirect to default doc, explicitly
This gives me a 4 …
13
votes
4answers
203 views
Why do I have to assign a value to an int in C# when defaults to 0?
This works:
class MyClass
{
int a;
public MyClass()
{
int b = a;
}
}
But this gives a compiler error ("Use of unassigned local variable 'a'"):
class My …
1
vote
2answers
39 views
Bug in the dropdown control?
I have a dropdown control, with some values I added in using the designer.
For example, "ANY", "Male", "Female".
The value for Male is set to M
The value for Female is set to F
…
5
votes
2answers
102 views
is there a way to get the default value of a type if the type is only known as System.Type?
If I want a method that returns the default value of a given type and the method is generic I can return a default value like so:
public static T GetDefaultValue()
{
return defa …
0
votes
4answers
58 views
Store Image in DataTable
I want to store image into my datatable and while adding colum I want to set its default value, sending you code doing with checkboxes..
public void addCheckBoxesRuntime(){
for (i …
0
votes
2answers
49 views
named and default arguments
In PHP, I have to pass the arguments in the same order as the arguments are in the constructor.
Now, in Python, take
listbox = Listbox(root, yscrollcommand=scrollbar.set)
for e …
