1
vote
3answers
73 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.
2
votes
7answers
678 views
How can I grab a double key stroke in .NET
How can I grab something like ^MM (CTRL + M + M) in .NET, using C#?
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
2answers
23 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
0answers
10 views
remap keyboard key in wpf
I have a wpf application that uses several Telerik RadNumericUpDown controls to enter measurements. Turns out that the Telerik control only accepts "." from the numeric keypad (next to the 0 on the …
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
5answers
113 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
41 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
72 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
97 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', …
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?
5
votes
5answers
109 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
1answer
149 views
What installation key software is well suited for Visual Basic or C# apps?
So I am getting ready to wrap up another project in VB and C# (written in Visual Studio 2008). Now I want to have the software only run in full version mode if the user enters a valid registration key …
3
votes
3answers
749 views
What’s the best method to use / store encryption keys in MySQL
I plan on using MySQL and it's built-in encryption functionality to encrypt / decrypt certain columns in certain tables. The concern I have is that I need to store the key somewhere. I could …
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 …
