Refers to a initial, most commonly used option, setting or value, automatically assigned to an application or device, outside of user intervention, intended to make a it usable "out of the box".
0
votes
3answers
71 views
Why when I insert a DateTime null I have “0001-01-01” in SQL Server?
I try to insert the value null (DateTime) in my database for a field typed 'date' but I always get a '0001-01-01'. I don't understand, this field "allow nulls" and I don't know why I have this default ...
1
vote
1answer
14 views
specify default goal for all plugin executions
I'm going to have multiple executions of my custom maven plugin written into my project's pom.xml. My config went like this:
...
<build>
<plugins>
<plugin>
...
0
votes
1answer
8 views
How to make PRAGMA option to be permanent for sqlite3
I have cygwin version of sqlite3 which has issue of non-existent temporary directory so I have to set the option either in the prompt or the query file:
PRAGMA temp_store = MEMORY;
or
PRAGMA ...
0
votes
0answers
23 views
jframe delete default textfield
I have made a jframe login window.the username textfield has some default text on it. The cursor appears by default on the username text field. I would like this default text to be deleted when the ...
0
votes
0answers
8 views
how to save a default message and contact data on sms application
I am developing an sms application and I want to set a default but editable message for the user and whichever contact the user chooses, to be saved in memory so that when they open the app next time, ...
0
votes
1answer
15 views
sqlite3: query file's UTF-8 encoding is not recognized automatically
I fed in the query for the database as follows:
sqlite3 database.db < query
and I got the message:
Error: near line 1: near "SELECT": syntax error
The query was encoded in UTF-8 and so was ...
3
votes
2answers
52 views
Is taking advantage of the one-time binding of function arguments a bad idea?
New python users often get tripped up by mutable argument defaults. What are the gotchas and other issues of using this 'feature' on purpose, for example, to get tweakable defaults at runtime that ...
0
votes
0answers
10 views
Setting Chrome as Default Browser with regedit [closed]
I'm trying to set Chrome as the defacto default browser on a computer where I don't have administrative privileges. Hence, I'm using the registry editor. (Standard solutions like setting it through ...
0
votes
0answers
10 views
Change default icon for “.exe” and “unknown” filetypes on Windows 7 [migrated]
I have looked all over the place with no success.
I'm wondering how I can change the default icon that windows shows when an exe file does not have an icon contained within it. I am also trying to ...
0
votes
1answer
10 views
Objective C- Whats the normal size of
I wanna make my ISomething app as native as possible and have no idea whats a good size for the Elements. Is there any normal/default/standard size for UIButtons or UILabels i can use? Are there any ...
1
vote
1answer
29 views
jQuery Datepicker - how to get / read default settings
I want to use jQuery datepicker only for parsing and formatting dates, but on my actual page I don't want to implement any datepicker.
Now, I set datepicker defaults, e.g.
...
1
vote
0answers
54 views
Checkbox value added by default
I'm attempting to make a code that will display the divs when checked and also add the values of the checkboxes together. I've managed to come up with this but now I want to make some of the ...
0
votes
1answer
51 views
Set specific row from database as default value for drop down menu
this is my first time asking for help and I know very little about coding. This was mostly done for me.
On a product page I have two drop down menus. One with a version select and one with a size ...
1
vote
1answer
39 views
Angular Template Default Value if Binding Null / Undefined (With Filter)
I have a template binding that displays a model attribute called 'date' which is a date, using Angular's date filter.
<span class="gallery-date">{{gallery.date | ...
1
vote
0answers
50 views
Default button fired instead of focused button in asp.net
Aspx page contains a panel having a default button called btnFilter. Panel having another button btnReset. When my focus is inside panel & I press enter its fires btnFilter click event that is OK. ...
0
votes
1answer
32 views
Python/IronPython- how to return value of specific attribute of class when only class object referenced?
Ok, just trying to get into Python, specifically, I'm using the benefit of on-the-fly calculations from within a C# app calling the IronPython engine. I pass in to IP a list of C# objects of class C, ...
0
votes
0answers
16 views
how to set tinymce default content
My tinymce version is 3.5.8. I want to set the default content, and try the way on official website and other ways by google, but all error. Some of error as below:
TypeError: tinyMCE.activeEditor is ...
0
votes
0answers
22 views
how to make android prompt user to select tts engine
I found that:
When i started my app at the first time, Android prompted me to select default engine for this app. I then selected one. Later on, my app was associated with that selected engine.
Now ...
0
votes
3answers
33 views
SQL: Default values for Dropdowns in Database
A coworker and I are in a debate in what would be best practices dealing with default values in the database and populating a drop down with it.
My Perspective: Put the default values in the ...
0
votes
1answer
22 views
Rails Migration - Non-Static Default Value
I had a quick question about setting the default value of a column in a Rails migration to a non-static value.
I have a "Users" table that already has the columns id, first_name, and last_name, and I ...
0
votes
1answer
18 views
So changed Git's default editor, now how do i invoke it from Git bash?
I've changed Git's default editor by applying the following to Git's global config:
core.editor='C:/Program Files/Notepad++/notepad++.exe' -multiInst -notabbar -nosession -noPlugin
Now, how do I ...
0
votes
0answers
6 views
Information about FileSystems.getDefault() and path.getFileSystem()
Basically I would like to know if the following lines:
UserPrincipal owner1 = path1.getFileSystem();
FileSystem fs = FileSystems.getDefault();
are totally equal. I will express it better. I would ...
1
vote
0answers
14 views
Simulate multiple default members in Calendar dimension
I'm implementing a Calendar dimension that allows us to incorporate multiple types of calendar (Gregorian, Fiscal, CustomerX...) per Dave Fackler's great article using many-to-many relationships. The ...
1
vote
1answer
69 views
c++ Dynamic 2d array not using default constructor
I got a problem that is beyond my knowledge. I'm working on a HGE project, but this is a c++ issue, not the HGE engine itself.
The question:
I want to create a 2D array with 3 different animations on ...
0
votes
1answer
62 views
Is there an elegant way to define a default typename in template
I am using C++98 here unfortunately. Here I paste the full code set
/*<class.h> begins
#ifndef INCLUDED_CLASS
#define INCLUDED_CLASS
#include <iostream>
#include ...
0
votes
2answers
37 views
How to open a fresh new browser from servlet [closed]
I want to open a fresh browser from my servlet application. Is there any way to do this?
Not.. this is my first browser opening from the application. I am not running this servlet from a browser.
...
2
votes
3answers
52 views
idiomatic python, manage default arguments in functions
I usually encounter that most of the people manage default arguments values in functions or methods like this:
def foo(L=None):
if L is None:
L = []
However i see other people doing something ...
0
votes
0answers
50 views
How to get Course modules details in moodle's default Web service
I am working with moodle , and want to use moodle's default web serivce which user can use with required parameters, all service working fine but while tray to get Course module details not able to ...
-1
votes
1answer
82 views
How to change the default disabled EditText's style?
It isn't looking nice when using EditText enabled="false". How can I change it
automatically for all of the controls?
I've added this image for reference.
Can someone help me? Thanks.
0
votes
2answers
29 views
SQL Insert based on role
I have a database with 3 tables:
Table 1 (Department) - This is a table with columns for departments and departmentID's
Table 2 (SecurityMap) - This is a table that maps rolenames to department ID's
...
0
votes
1answer
32 views
changing default value to a sub-query in mysql
What I want to do, is that I'd like to change the column properties, and associate a default value for a certain column, and this value would be from a sub-query. Basically the default value of ...
0
votes
0answers
49 views
Can't set default value of property in custom control?
The problem is I've already initialized all the initial values for my Properties in my Custom control constructor, for example, PropA = true. But when dragging-n-dropping the final Custom control onto ...
1
vote
1answer
53 views
Titanium : how to make a default “defaultImage” for all elements?
Is it possible to make a default "defaultImage" that will be used for all elements in my app (imageViews, coverflow, etc.) ? It will be great, instead of put "defaultImage" everywhere...
I've ...
0
votes
1answer
83 views
Force IE to send URLs in UTF-8
I am having one issue with the behavior of Internet Explorer and UTF-8 characters in URLs. I found that my site fails to complete the request when IE has unchecked "Send UTF-8 URLs" in Internet ...
-1
votes
1answer
46 views
Why i can't change my python default encoding?
nano /usr/local/lib/python2.7/site-packages/sitecustomize.py
import sys
reload(sys)
sys.setdefaultencoding('UTF-8')
after i finished ,
root@debian:/home/debian# python
Python 2.7.3 ...
0
votes
1answer
32 views
How to use Django DateTimeField's default
I'm trying to use datetime.datetime.now as the default for my pub_date column, but keep getting an error.
DatabaseError: (1054, "Unknown column 'archive_app.pub_date' in 'field list'")
I'm just ...
0
votes
1answer
26 views
Show a default item (javascript)
I want to show an default item when a page loads with this script. At the moment it is only possible when someone clicks on the 'newboxes' items.
function showonlyone(thechosenone) {
var ...
1
vote
0answers
32 views
vba version 6.5 how to set default member of a class
What I am trying to do is to make a particular method to be the default member of my class in VBA but I can't seem to be able to do it. From my research the trick is to export the file and add a line ...
0
votes
1answer
31 views
Search the web with default browser and engine with applescript
I am trying to make a script that will do an internet search with the default browser and search engine. Open location works for opening with the default browser, but how would I use the default ...
0
votes
1answer
66 views
15 Puzzle Image Checking With Handler
I will make this clear right now this IS homework. I do not expect full answers but they are welcome.
I was assigned to make a 15 puzzle in Visual Basic. Here is an example of what the game looks ...
0
votes
0answers
30 views
Is there a system variable that holds the device-specific low-battery threshold for Android?
I am checking to see if the battery has reached critical level.
Android sends an intent to your app when the battery crosses the low-battery threshold in either direction. But this only works if the ...
0
votes
1answer
27 views
UISlider Default
In the storyboard editor, it is possible to set a "current" value for a UISlider. Is there any way to get this value to use as a reset value after the value of the slider has changed? If not, I guess ...
0
votes
2answers
48 views
jquery swap content make page default on load
I need con1 to show active and be loaded onload of page.
this is my code to swap content. I am using a external php page to swap out content when the id of con1 con2 and so on our clicked.
I want ...
0
votes
1answer
54 views
Replace default placeholder after form submit
How can I replace the default placeholder in a form (using JQuery or JavaScript) with the submitted value? Thank you!
Here is a sample code:
<form name="" id="RegForm" method="post" action="">
...
-4
votes
4answers
79 views
Default constructor in Java [closed]
I have a default constructor within my main class that is seemingly not being called at runtime. Here is an example:
public class Cat {
private static int myval;
Cat() throws IOException {
...
0
votes
0answers
9 views
DTO Default Values
I did a DTO for each entity generated by EF with the same fields. I use them when I want to return data from EF to the business layer. The problem is that sometimes the DTO only assigned certain ...
2
votes
2answers
53 views
Activities and the manifest in Android
I know there are plenty of questions about this but I just can't work out why my program keeps loading the wrong activity even though I've made the correct one the default in the manifest. Here's some ...
0
votes
0answers
10 views
What happens in OpenGL 3.x+ if I don't specify a shader
I'm working with the new core OpenGL 4, so I'm using VAO exclusively and Vertex and Fragment Shaders.
But, What if I don't specify any shader at all, Does the system provide a default shader? e.g. a ...
-1
votes
1answer
33 views
Batch set specific printer port [closed]
I am trying to set a printers default port in batch. I need to use port FILE:
Here is what i have tried. Not sure if this is the right method to go about doing this.
RUNDLL32 ...
0
votes
1answer
84 views
C# progressbar drawstring on form load
is there a way to write a default text on a progressbar in C# ?
this isn't working in Form_Load, but works fine on button click...
using (Graphics gr = progressBar1.CreateGraphics())
{
...






