1
vote
6answers
110 views
What .NET dictionary supports a “find nearest key” operation?
I'm converting some C++ code to C# and it calls std::map::lower_bound(k) to find an entry in the map whose key is equal to or greater than k. However, I don't see any way to do the …
0
votes
5answers
136 views
Does the array key determine array size in C++?
im storing some settings for objects in an array. the id's of objects are used as the key. the id's start from 100000 and go up. if i was to input data for an object with id 100 00 …
0
votes
6answers
60 views
PHP array problem
I have an array like this. What i want is to get the value of the index for specific values. ie, i want to know the index of the value "UD" etc.
Array
(
[0] => LN
[1] = …
1
vote
1answer
23 views
How to create multiple components of a service with c’tor dependencies
I'd like to create several similar services which can be destinguished and accessed by their names (=keys).
For the service implementation I want to use classes with c'tor depende …
0
votes
7answers
118 views
Suggest a good method for having a number with high precision in C#
Hi every one!
I am programming on a project which I should store the key of the user to the initial configuration of a machine, I want to write it in C#.
I have an initial confi …
0
votes
4answers
74 views
simple way to change the key value of an array element
I am reading in a bunch of multi-dimensional arrays, and while digging through them I have noticed that some of the keys are incorrect.
For each incorrect key, I simply want to ch …
0
votes
6answers
51 views
PHP find element key
i have this array
Array
(
[0] => a
[1] => b
[2] => c
[3] => d
)
how can i get an element's key?(for example a=0,c=2)
3
votes
1answer
22 views
Using javascript to scroll iFrame up and down
Hi,
Is it possible to scroll the iframe window from the parent window using keys or javascript? The iframe content is from another domain different from the parent window.
KM
1
vote
4answers
52 views
SQL Server Foreign Key constraint benefits
We're designing a database in which I
need to consider some FK(foreign key)
constraints. But it is not limited to
formal structuring and normalization.
We go for it only …
0
votes
3answers
56 views
Capture CTRL+A, CTRL+C keys/events in flex
How to capture CTRL+A, CTRL+C events in flex? It looks like they are special keys/combinations.
As I understand in Flex 3.4 I can capture CTRL+A by capturing Event.SELECT_ALL, and …
3
votes
4answers
148 views
Mysql auto increment primary key id’s
I have some mysql tables that have auto incrementing id's that are primary keys, but I notice that I never actually use them... I used to think that every table must have a primary …
0
votes
2answers
37 views
How to check for COMMAND key held down Java/SWT at startup on Mac OS X
My app is cross-platform, hence why SWT is being used. I can easily monitor for the Mac Command/Flower key press when the app is running using SWT (they have SWT.COMMAND as a key p …
0
votes
2answers
38 views
Increase increment size to match GUID advantage
Hi,
I've been thinking of implementing this system, but can't help but feel there's a catch somewhere. One of the points of using GUID over incrementing int is that, in the futu …
0
votes
0answers
52 views
How can I decrypt an SSH session with both public and private keys? [closed]
Is it possible to decrypt an SSH session with the public AND private key used for the session? I have a network capture of the packets, and I have no idea what tools I'd be able to …
0
votes
4answers
63 views
Pattern Match on a Array Key
Hi. Since I'm finding this site helpful I thought I'd sign up :)
I need to get the stock values out of this array:
Array (
[stock0] => 1
[stockdate0] =>
[stock1] => 3 …
