Questions tagged [mnemonics]
138 questions
0
votes
2 answers
How to Add shortcut key to checkbox without text
I want to add shortcut key to checkbox. Checkbox do not have text. I have label and then Checkbox. Label have shortcut key for ex. &Visible. So, Label have V as shortcut key. If someone press Alt+V then chechbox should change from selected to not…

Abhijit Shelar
- 1,055
- 7
- 21
- 41
0
votes
1 answer
ARM v7 ADD vs. LDR
Is there any difference between the following instruction (besides flags affection)?
ADD R6, SP, #0xDC
and
LDR R6, [SP, #0xDC]

badeip
- 602
- 8
- 9
0
votes
1 answer
permutations with words at set positions
I am trying to write a script that creates all permutations of words, with a few in set positions. I'm basically trying to recover my 12 word mnemonic seed, in which i have a few extra letters but I know the position of a few for example, I know…

Dasher Love
- 1
- 1
0
votes
1 answer
BIP39 mnemonic from seed
I have a simple guestion for experst in this topic.
How can i get mnemonic from generated seed?
const bip39 = require('bip39')
var seed = bip39.mnemonicToSeedSync('weasel father present tomorrow shock hover issue attack dial insect oppose…

Pineapple Haze
- 15
- 1
- 5
0
votes
1 answer
Java: Mnemonics and Unicode
I am currently having problems with unicode and mnemonics in a Java SE application.
In the menu bar i added a menu with the name "ФMnemonicUnicodeTest" and the first letter is set as Mnemonic.
The integer value which is set as mnemonic is…

RusH
- 41
- 8
0
votes
0 answers
How to add counter & Avg Number of results per minute in python
I have this code where I randomly generate mnemonic seeds and get the Eth address.
so I want to stick my counter and Avg Number of results per minute so that after I print. It will show me how many Ether addresses I have generated and if possible it…

Mohit Kumar
- 1
- 2
0
votes
1 answer
How do I authenticate a bitcoinlib created wallet against a mnemonic phrase?
I have created a wallet using bitcoinlib. The wallet is named 'my-awesome-wallet55.' When I try to open my existing wallet with a newly generated mnemonic phrase, the behavior I expect is an exception or security error, however the wallet opens…

Sonny Parlin
- 931
- 2
- 13
- 28
0
votes
2 answers
JCheckBox mnemonic without transferring focus
As per title, is it possible to change a JCheckBox selection state using a mnemonic key without transferring the focus to the component?
Current behavior as per GIF.
The wanted behavior would be the focus remaining on the "Type" text field.

LppEdd
- 20,274
- 11
- 84
- 139
0
votes
0 answers
How can I search the internet for phrases where each word begins with a specific letter?
Sometimes you have to memorize a long list or pathway (especially in medicine/biochemistry). This is much easiar if you have a mnemonic phrase to help you remember the first letter of each keyword. However, current mneomnic makers produce extremely…

John Salter
- 182
- 10
0
votes
0 answers
Convert 12 words mnemonic to Private Key in Ethereum
I'm making an Android application where users can login using their Ethereum account and make transactions. So far, the user can login with his private key. I want to add the option of using the 12 mnemonic words to login as well.
I am able to…

Michael Brown
- 1
- 1
- 4
0
votes
0 answers
Keypress using mnemonics not initializing action
I have no idea why this isn't working. Netbeans does not allow me to edit this portion of the code.
deletestudentButton.setText("Delete Student");
deletestudentButton.addActionListener(new java.awt.event.ActionListener() {
…

D_DOT
- 1
- 3
0
votes
1 answer
x86 decoding instruction opcode byte
I'm creating an x86 decoder and I'm struggling on understanding and finding an efficient way to calculate the mnemonic of an instruction.
I know that the opcode 6 MSBs are the opcode bits, but I can't find anywhere that use those 6 bits in a…

Jorayen
- 1,737
- 2
- 21
- 52
0
votes
1 answer
Another way to set mnemonic for JMenuItem?
So, I have a "Open Project" menu item, and I want to set mnemonic to it. I prefer it to be 'e' character from Project word. But when I set it with
openProjectMenuItem.setMnemonic('e');
it sets 'e' character from Open word as mnemonic. Is there a…

sokolovic
- 263
- 1
- 3
- 13
0
votes
1 answer
SingleFrameApplication that does NOT require ALT to activate menuitem mnemonics?
In the NetBeans 6.9 IDE, if you create a
New Project >> Java >> Java Desktop Application and run it, you will find that the menu items have mnemonics, but only after ALT is pressed.
(The netbeans program itself uses this style of menu.)
However, if…

brian_d
- 11,190
- 5
- 47
- 72
0
votes
1 answer
Mnemonics won't show up in a SWT window
I have been trying to set up mnemonics on my buttons in a SWT window (Eclipse plugin), but unfortunately I always end up with the following cases:
Either I use setText("&Cancel"): it doesn't show the mnemonics until you press the "alt" button
Or I…

MedAl
- 457
- 3
- 19