Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

92
votes
17answers
57k views

C# String enums

I have the following enumeration: public enum AuthenticationMethod { FORMS = 1, WINDOWSAUTHENTICATION = 2, SINGLESIGNON = 3 } The problem however is that I need the word "FORMS" when I ...
41
votes
4answers
2k views

What does main return?

I have this question, which i thought about earlier, but figured it's not trivial to answer int x = x + 1; int main() { return x; } My question is whether the behavior of the program is defined ...
24
votes
8answers
18k views

this class is not key value coding-compliant for the key

I am coming to Stack Overflow for a solution to a little problem of mine that I have spent hours trying to solve. I'm trying to link a UILabel with an IBOulet created in my class. That's something so ...
20
votes
8answers
5k views

Random Python dictionary key, weighted by values

I have a dictionary where each key has a list of variable length, eg: d = { 'a': [1, 3, 2], 'b': [6], 'c': [0, 0] } Is there a clean way to get a random dictionary key, weighted by the length of ...
18
votes
6answers
490 views

How can I generate N random values that sum to predetermined value?

I need your help with a little problem. I have four labels and I want to display on them random value between 0 to 100, and the sum of them must be 100. This is my code : private void ...
18
votes
6answers
943 views

Default value of a type

For any given type i want to know its default value. In C#, there is a keyword called default for doing this like object obj = default(Decimal); but I have an instance of Type (called myType) and ...
16
votes
14answers
36k views

How to get a jqGrid cell value

How to get a jqGrid cell value when in-line editing (getcell and getRowData returns the cell content and not the actuall value of the input element).
15
votes
4answers
3k views

Passing Reference types by value in C#

I want to pass a reference type by value to a method in C#. Is there a way to do it. In C++, I could always rely on the copy constructor to come into play if I wanted to pass by Value. Is there any ...
14
votes
3answers
307 views

How to check if a value exists in a dictionary (python)

Hi I have the following dictionary in python: d = {'1': 'one', '3': 'three', '2': 'two', '5': 'five', '4': 'four'} I need a way to find if a value such as "one" or "two" exists in this dictionary. ...
13
votes
5answers
20k views

Display Parameter(Multi-value) in Report

Can anyone tell me how to display all the selected value of my multi value parameter in SSRS report. When giving parameter.value option it gives error. Thanks in advance. Suni
12
votes
7answers
3k views

setting ruby hash .default to a list

i thought i understood what the default method does to a hash... give a default value for a key if it doesn't exist irb(main):001:0> a = {} => {} irb(main):002:0> a.default = 4 => 4 ...
11
votes
2answers
4k views

find nearest value in numpy array

is there a numpy-thonic way, e.g. function, to find the 'nearest value' in an array? example: np.find_nearest( array, value ) thanks in advance!
10
votes
1answer
927 views

What's the difference bewteen jQuery .val() and .attr('value')?

I think the title is clear enough
10
votes
4answers
257 views

Is there any practical use of “Void” structure in .NET

Just of a curiosity, is there any practical use of "Void" struct except in Reflection ?
10
votes
7answers
6k views

Is string a value type or a reference type?

I just can't find a "good" explanation for this...
10
votes
1answer
3k views

How can C# nullable value typed values be set on NHibernate named IQuery parameters?

I am using NHibernate and calling a stored procedure via a named query: <sql-query name="SearchStuff" read-only="true" cacheable="true"> <return class="ResultEntity" /> EXEC ...
9
votes
1answer
165 views

Why can I assign null to a Unit value and why does it get converted to ()?

Consider this code: var unit: Unit = null unit: Unit = () a) Why am I allowed to assign null to a value class? (see §12.2.3) b) Why does the null get converted to ()?
9
votes
3answers
2k views

default value for a static property

I like c#, but why can I do : public static bool Initialized { private set; get; } or this : public static bool Initialized = false; but not a mix of both in one line ? I just need to set ...
8
votes
1answer
8k views

Getting URL hash location, and using it in jQuery

I'd like to get the value after a hash in the URL of the current page and then be able to apply this in a new function... eg. The URL could be www.example.com/index.html#foo And I would like to ...
7
votes
4answers
107 views

Hash a Range of Values

I know that I can hash singular values as keys in a dict. For example, I can hash 5 as one of the keys in a dict. I am currently facing a problem that requires me to hash a range of values. ...
7
votes
2answers
349 views

Why is the range of bytes -128 to 127 in Java?

OK, this is as noob as it gets, but I still don't get why the lowest value a byte can take is -128. That the highest value is 127 I can understand, because it's 01111111 in binary, but how does one ...
7
votes
2answers
2k views

Implicit return values in Ruby

I am somewhat new to Ruby and although I find it to be a very intuitive language I am having some difficulty understanding how implicit return values behave. I am working on a small program to grep ...
7
votes
5answers
381 views

How are NULLs stored in a database?

I'm curious to know how NULLs are stored into a database ? It surely depends on the database server but I would like to have an general idea about it. First try: Suppose that the server put a ...
6
votes
7answers
138 views

Removing Duplicates From Dictionary

I have the following Python 2.7 dictionary data structure (I do not control source data - comes from another system as is): {112762853378: {'dst': ['10.121.4.136'], 'src': ['1.2.3.4'], ...
6
votes
9answers
154 views

Why can't we lock on a value type?

I was trying to lock a Boolean variable when I encountered the following error : 'bool' is not a reference type as required by the lock statement It seems that only reference types are allowed ...
6
votes
2answers
126 views

How to use a variable as default value of a TCL proc argument

I've got a variable that I would like to use as default value for an argument: proc log {message {output $::output}} { .... } Is there a way to do this or need I to evaluate the variable inside ...
6
votes
3answers
488 views

XPath with regex match on an attribute value

All - I've searched and tinkered around for hours in an effort to crack this one, but I'm still having problems. I have the XML data below: <game id="2009/05/02/arimlb-milmlb-1" pk="244539"> ...
6
votes
5answers
465 views

Suffix of “f” on float value?

I am wondering what the difference is between these two variables in C: float price = 3.00; and float price = 3.00f; The trailing "f"? Thanks.
6
votes
5answers
966 views

Where Are Value Types Stored In (C#) Generic Collections

It is true that generic collections perform better than non-generic collections for value types. (i.e. List vs. ArrayList). But why is that, other than the boxing-unboxing step? Where are the value ...
6
votes
5answers
302 views

Function returning a tuple or None: how to call that function nicely?

Suppose the following: def MyFunc(a): if a < 0: return None return (a+1, a+2, a+3) v1, v2, v3 = MyFunc() # Bad ofcourse, if the result was None What is the best way to define a function ...
6
votes
3answers
2k views

XElement value in C#

How to get a value of XElement without getting child elements? An example: <?xml version="1.0" ?> <someNode> someValue <child>1</child> ...
6
votes
2answers
270 views

See return value in C#

Consider the following piece of code: As you can see we are on line 28. Is there any way to see the return value of the function at this point, without letting the code return to the caller ...
6
votes
1answer
6k views

How to set initial value + auto increment in mysql?

How to set the initial value (for example for "id" column) that start from 1001?? I do a insert "INSERT INTO users (name, email) VALUES ('{$name}', '{$email}')"; Without specify the initial value.
5
votes
3answers
111 views

java static field from null

I found in internet this code: public class Foo { static int fubar = 42; public static void main(String[] args) { System.out.println(((Foo) null).fubar); } } It works. But how ...
5
votes
2answers
400 views

Modify Struct variable in a Dictionary

I have a struct like this: public struct MapTile { public int bgAnimation; public int bgFrame; } But when I loop over it with foreach to change animation frame I can't do it... Here's the ...
5
votes
1answer
432 views

PHP: unformat money

Is there a way to get the float value of a string like this: '75,25 €', other than parsefloat(str_replace(',', '.', $var))? I want this to be dependant by the current site language and sometimes the ...
5
votes
2answers
371 views

Get the css value from :hover with .css() - jquery

So Im setting up a menu that has different background :hover colors. The buttons backgrounds will be a grey color and upon hover the button animate() to its respective color. I can grab the original ...
5
votes
3answers
261 views

Can one (re)set all the values of an array in one line (after it has been initialized)?

In C, I know I can make an array like this int myarray[5] = {a,b,c,d,e}; However, imagine the array was already initialised like int myarray[5]; and then at some point afterwards, I wanted to ...
5
votes
3answers
3k views

Visual Studio debugger - Displaying integer values in Hex

I'm using Visual Studio 2008 and I have just noticed that the debugger is displaying integer values as Hex when I hover over variables and also in the immediate window. I guess I must have hit a ...
5
votes
2answers
2k views

How to edit a binary file's hex value using C#

So here's my issue. I have a binary file that I want to edit. I can use a hex editor to edit it of course, but I need to make a program to edit this particular file. Say that I know a certain hex I ...
5
votes
2answers
7k views

How to get a cell value in JQGrid?

How to get a cell value in JQGrid? If I use the following syntax – var ret = jQuery("#MyGrid").jqGrid('getRowData', id); ret = ret.ProductId; it returns the following HTML. 'input ...
5
votes
5answers
2k views

Best practice in python for return value on error vs. success

In general, let's say you have a method like the below. def intersect_two_lists(self, list1, list2): if not list1: self.trap_error("union_two_lists: list1 must not be empty.") ...
5
votes
2answers
5k views

c# How to sort a sorted list by its value column

i have a generic sorted list "results" with key = some filename and value = boolean. I would like to sort the list by the boolean entry or value column. does anyone know how i can do this? Thanks!
5
votes
5answers
282 views

Nullable variable types - .value member

I was wondering - when would I want to use the .Value member on a nullable type instead of just calling the variable itself? e.g.. bool? b = true; why would i use b.Value to get the value instead ...
5
votes
5answers
1k views

C# - Capture incoming Argument Values in KeyValuePair Array

I am wondering how I can fetch the incoming arguments of my method in an array. Or just retrieve the values of my arguments dynamicly. Meaning, a call like: MyMethod(10, "eleven"); For method: void ...
5
votes
5answers
15k views

VB.NET Function Return

In order to return a value from a VB.NET function one can assign a value to the "Functions Name" or use "return value." I sometimes see these inter-mixed in the same function. Personally, I prefer ...
5
votes
8answers
1k views

Is “>” (U+003E GREATER-THAN SIGN) allowed inside an html-element attribute value?

In other words may one use /<tag[^>]*>.*?<\/tag>/ regex to match the tag html element which does not contain nested tag elements? For example (lt.html): <!DOCTYPE HTML PUBLIC ...
4
votes
2answers
69 views

Trigger “onchange” event

The "onchange" event is triggered only when the USER enters some value. Why isn't possible to fire the event when I change the value automatically via Javascript ? Is there an alternative ? ...
4
votes
3answers
105 views

Swapping keys and values ​​of a map in c++

I'm looking for a function in C++ that for swap the contents of a map ... that is: those that were the keys now become the items and those that the items were now the keys. Can you tell me if there ...
4
votes
2answers
185 views

Set Value to Enum - Java

I'm trying to set values to enum in my java application....but I can't do that. Am I doing it wrong??? public enum RPCPacketDataType { PT_UNKNOWN(2), PT_JSON(4), PT_BINARY(5) }; It's ...

1 2 3 4 5 27