Questions tagged [mnemonics]

138 questions
3
votes
1 answer

Mnemonic on Label for Text input field

Having a Label and a Text control in SWT, how can I define a mnemonic on the label that will activate the input field? I found a couple of examples on how to set a mnemonic on a Button, but how do I define a mnemonic on a Label and make it point to…
user1438038
  • 5,821
  • 6
  • 60
  • 94
3
votes
3 answers

Mnemonic for C# generic types

I often forget if i have to use in or out when defining covarient and contravarient generic types. In java i have the mnemonic PECS (producer extends consumer super) to help me. Do you know a similar mnemonic for c#?
mR_fr0g
  • 8,462
  • 7
  • 39
  • 54
3
votes
4 answers

What mechanisms could be used to easily generate a high entropy password on a smartphone without having to resort to alphanumeric input?

I'm working on a version of Password Safe for android. Password Safe uses a passphrase to encrypt your passwords, but typing out long passphrases on a smartphone can be tedious, especially if they're masked. I'd like to investigate using…
Jherico
  • 28,584
  • 8
  • 61
  • 87
3
votes
0 answers

Why does the Windows dialog manager honor mnemonics to hidden controls?

I recently realized that the Windows dialog manager apparently honors mnemonics to controls that aren't visible. For example, if I hide a button labeled "&Foo" on a dialog via ShowWindow(SW_HIDE), pressing Alt+F triggers the button. Why does…
jamesdlin
  • 81,374
  • 13
  • 159
  • 204
3
votes
1 answer

deactivate mnemonic for JButton

I need help to deactivate the Mnemonic for JButton. Actually I am using 3rd party API, which they set mnemonic as "Alt C". So I want to remove this mnemonic and wants to set nothing (i.e wants to remove the mnemonic) for this compButton. // Alt…
mgr
  • 641
  • 1
  • 8
  • 23
3
votes
1 answer

Enabling mnemonics in button

I read that in order to enable mnemonics, I have to turn on RecognizesAccessKey on ContentPresenter. When I tried this code, I saw only text without button.
Andrey
  • 853
  • 9
  • 27
3
votes
1 answer

Theorycrafting a program to create mnemonic major trigger words and need some advice

Here is the mnemonic major system: Basically, the table is as follows: 0: z or s 1: t or d 2: n 3: m 4: r 5: l 6: g or j 7: k or c 8: f or v 9: p or b So as an example the number "31415" would be "mtrtl". Then you just fill in with any vowels or…
John Smith
  • 8,567
  • 13
  • 51
  • 74
3
votes
1 answer

JButton with HTML named action and a mnemonic

I have a JButton that is constructed using an Action and this action has a name that is contains html. I then go about setting the mnemonic on the JButton by first parsing out html to get the first character in the name. For example, the JButton…
Denis Sadowski
  • 3,035
  • 5
  • 24
  • 26
2
votes
0 answers

How to make Mnemonic work with editable Spinner?

Mnemonic mode does not change on e. g. ALT pressed when an editable Spinner is focused. How to fix it? Thank you. Minimal, Reproducible Example: package org.example; import javafx.application.Application; import javafx.geometry.Insets; import…
anko
  • 1,628
  • 1
  • 6
  • 14
2
votes
2 answers

Database for assembly instructions?

I'm looking for a up-to-date database (machine readable) containing information of assembly instructions. Capstone does some info, but it doesn't include descriptions of each instruction. Intel's Intel Architecture Developer's Manuals (volumes 2A…
Ron
  • 73
  • 1
  • 4
2
votes
3 answers

ARM v7 ORRS mnemonic without operand2

What does: ORRS R1, R3 do? Is it just R1 |= R3, possibly setting the N- or Z flags? This might be blatantly obvious, but I haven't found any documentation that describes the ORR mnemonic without operand2. Feedback is greatly appreciated. -b.
badeip
  • 602
  • 8
  • 9
2
votes
1 answer

How do you create a 12 or 24 mnemonics code for multiple cryptocurrencies (ETH, BTC and so on..)

I just started using Flutter and I am trying to create a crypto wallet app that can support multiple different cryptocurrencies. The current issue I am facing is, is that I don't know how a mnemonics code is being generated for different…
Omega
  • 65
  • 7
2
votes
1 answer

Windows.Forms Mnemonics don't work

I have more or less the same problem as this guy but his post is 2 years old, so I thought I could open a new one. In the program I use labels and as I found out mnemonics on labels trigger the enter event of the next control in the tab order. So…
John
  • 23
  • 5
2
votes
2 answers

Invalid character (0xe2) in mnemonic

I have trouble compiling my assembly code. gcc returns: func_select.s:5: Error: invalid character (0xe2) in mnemonic func_select.s:7: Error: invalid character (0xe2) in mnemonic here is the code (lines 5-7): secondStringLength: …
Shay Chercavsky
  • 47
  • 2
  • 12
2
votes
8 answers

How do you remember the order of the expressions in a for loop?

It's a pretty simple question, I always have to go check here and then I hit my head and say it's so obvious. But really after a week of not using it I usually end up writing for ($i = 1; $i++; $i <= 10;) { echo $i; } some Mnemonic might…
Moak
  • 12,596
  • 27
  • 111
  • 166