1
vote
3answers
84 views
Keycode for @ char
could someone please tell me the identifier for the @ key?
for example keys.Escape is for the ESC key. i would like to know what it is for @
thank you.
4
votes
5answers
142 views
What _can_ I use as std::map keys?
Extends.
I have:
struct Coord
{
int row, col ;
bool operator<( const Coord& other ) const
{
return row < other.row && col < other.col ;
}
} ;
I'm trying to create a …
0
votes
2answers
24 views
GAE: Using properties for keys() in ModelChoiceProperty boxes
I have a model User which appears as a ReferenceProperty in another model, Group.
When I create a form for Group, using Meta, the form's values contain lots of generated strings. I'd like to stop …
0
votes
2answers
35 views
XSLT - Accessing Key’s by index - For example, in Muenchian Grouping
<listings>
<property rln="r317080" firm="f102" agent="a2140">
<street>2638 Maple Avenue</street>
<city>Padua</city>
…
0
votes
5answers
117 views
Press Escape key to call method.
Hey
Is there a way to start a method in c sharp If the key is pressed ? For example esc
Please help me with this one
Thanks
0
votes
2answers
42 views
problem with keyboard simulate press event.
im trying to make a automated tool for poulating textboxes with usernames for a dispatcher application at work.
Im having some problems trying to simultate key press, if the inputArrayX[i] array …
1
vote
1answer
77 views
Hibernate map collection with constant key
Hi,
I'm trying to map a collection (of type map) using a foreign key and a fixed value as the key/mapping arguments.
I have several tables of product types and a language table which holds stuff …
0
votes
4answers
100 views
Somewhat simple PHP array intersection question
Maybe I'm going insane, but I could have sworn that there was an PHP core function which took two arrays as arguments:
$a = array('1', '3');
$b = array('1'=>'apples', '2'=>'oranges', …
5
votes
5answers
111 views
Acceptable types to use as keys in a HashTable
I must admit to having only a rudimentary understanding of how HashTables work, although from what little I do know it seems fairly straightforward. My question is just this: it seems that the …
0
votes
2answers
72 views
Counting all the keys pressed and what they are (python)
I'd like to create a map of the number of presses for every key for a project I'm working on.
I'd like to do this with a Python module. Is it possible to do this in any way?
3
votes
3answers
1k views
C# How to Generate Unique Public and Private Key via RSA
I am building a custom shopping cart where CC numbers and Exp date will be stored in a database until processing (then deleted). I need to encrypt this data (obviously).
I want to use the …
14
votes
16answers
1k views
Surrogate Vs. Natural/Business Keys
Here we go again, the old argument still arises... we'd better have a business key as a primary key, or we'd rather have a surrogate id (i.e. an SQL Server identity) with a unique constraint on the …
0
votes
5answers
294 views
how do I make a composite key with SQL Server Management Studio?
how do I make a composite key with SQL Server Management Studio?
I want two INT columns to form the identity (unique) for a table
2
votes
5answers
430 views
Multiple Modifier Keys in C#
I am betting this is a really simple question to answer, I just can't get such a simple thing to work.
I use a keydown event to detect keys pressed and have several common key combination's to do …
0
votes
3answers
76 views
How to re-index the values of an array in PHP?
Array (
[id] => 3
[user_id] => 1
[clan_id] => 1
[date] => 2009-09-24 09:02:05
[skill1rank] => 1
[skill1lvl] => 2376
[skill1xp] => 1804229942
…
