0
votes
2answers
42 views
Partially defaulting template arguments using typedefs?
I am trying to do something like this:
template <typename T,bool Strong=true>
class Pointer {...};
template <typename T>
typedef Pointer<T,false> WeakPointer;
…
0
votes
3answers
852 views
Problem with default values for Reporting Services parameters
I have a SQL 2005 Reporting Services report that has several report parameters. One of them is called IsActive and is of type Boolean. The parameter is hidden and set to allow nu …
0
votes
3answers
80 views
“error: too few arguments to function”
I have a C program called opencv2.0 function :
cvSaveImage( out_img_name, img);
Compiler gcc reports that
too few arguments to function cvSaveImage
The prototype of cvSave …
3
votes
2answers
64 views
Is it possible to define a block with default arguments in Ruby?
This question deals with optional arguments passed to a Ruby block. I'm wondering if it's also possible to define arguments with default values, and what the syntax for that would …
2
votes
8answers
185 views
When returning a pointer, what to return if it’s not found? C++
I'm not sure what to return as a default?
myDrugs is a private vector<Drug*> container
Drug* DrugDealer::getFirstDrugInSack(DrugType drugtobuy)
{
for (int i = 0; i < …
2
votes
2answers
18 views
Easily select default usings for project namespaces and subamespaces
Is there an easy way in Visual Studio to assign default usings when i make a new file in a certain (sub)namespace in my project?
0
votes
1answer
473 views
Default value to a data parameter , SSRS
In my SSRS report I wanted to default the date parameter with the execution date. I default the date patameter with =DateValue(Globals!ExecutionTime)
or =today. I do have 5 other p …
0
votes
0answers
26 views
Why does ApplicationSettingsBase.Reset() empty the PropertyValues?
I thought the Reset() method repopulates the Settings with default values again, but it seems not to. How can I reload them with the default values?
private void buttonLoadDefau …
0
votes
1answer
204 views
What’s the default value of the Hibernate property hibernate.jdbc.factory_class?
I want to provide a custom Batcher for Hibernate to use (for this reason: http://stackoverflow.com/questions/83093/hibernate-insert-batch-with-postgresql), but I want to create a m …
0
votes
2answers
77 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. …
0
votes
3answers
167 views
Updates to Records not allowed - Write Conflict
This stems from a previous question I asked - about a write conflict with a form, but the problem seems to be originating from the fact that I can update existing records in a link …
0
votes
2answers
768 views
Magento custom attribute default value not showing in front end
Hi there,
I have added some custom attributes to the products in the admin section of our Magento 1.3.2.1 installation and I've given some of those attributes default values. The …
0
votes
1answer
98 views
Why does XMLSerializer take DefaultValue Attribute of base class to serialize
using System.ComponentModel;
using System.IO;
using System.Xml.Serialization;
namespace SerializerTest {
static class Program {
static void Main() {
using (TextWrit …
0
votes
2answers
143 views
Django: How to set initial values for a field in an inline model formset?
I have what I think should be a simple problem. I have an inline model formset, and I'd like to make a select field have a default selected value of the currently logged in user. …
0
votes
2answers
41 views
Default template parameters arguments in VC++
Does VC++ not support default template parameters arguments? This simple code:
template <typename T=int>
class X
{
};
X x;
gives me an 'error C2955: 'X' : use of class te …
