Questions tagged [mnemonics]

138 questions
0
votes
3 answers

javafx adjust setMnemonicParsing(true) alt key

in JAVAFX, I am using shortcut by using setMnemonicParsing(true) code which is from googling is below VBox mainLayout = new VBox(); MenuBar menuBar = new MenuBar(); Menu menu1 = new Menu("_File"); menu1.setMnemonicParsing(true); …
0
votes
1 answer

Assembly Next Register

Im working with ASSEMBLY, and basically I'm looping through employee data such as (hourly wage, hours worked, tax deductions, etc.). I want to be able to loop through instructions, and on each iteration, I want the register I'm using to go to the…
user1527185
0
votes
2 answers

Is there a way to set underline to mnemonic character in native look and feel under Win 7?

My code: fileMenu = new JMenu("File"); fileMenu.setMnemonic(KeyEvent.VK_F); fileMenu.setDisplayedMnemonicIndex(0); Javadocs for AbstractButton.setDisplayedMnemonicIndex() say that Not all look and feels may support this. I set my look and…
ps-aux
  • 11,627
  • 25
  • 81
  • 128
0
votes
1 answer

Button mnemonics and i18n

Just a quick UI-style question here: Is it a good idea to internationalize button mnemonics? E.g. if my "Next" button has the mnemonic "N" in English, should it be "S" for "Suivant" in French? Or should I keep them the same so that keyboard…
Pascal Kesseli
  • 1,620
  • 1
  • 21
  • 37
0
votes
2 answers

Mnemonic not showing on a System.Windows.Forms.ContextMenu

I'm having some problems with Mnemonics and ContextMenus - although the Mnemonic property of the Menutem is set correctly the little underline wont show under the relevant key. Here is my code: private void Form1_MouseDown(object sender,…
Justin
  • 84,773
  • 49
  • 224
  • 367
-1
votes
1 answer

Cryptocurrency wallet mnemonic seed phrase

I'm working on a crypto wallet app and I need help with these following questions; when creating a new wallet, how do the Blockchain network check if a certain mnemonic seed phrase has been used before for creating another wallet? is it ever…
-1
votes
1 answer

What is the best way to create ether wallet ? how does creating wallet using mnemonic work?

Please can any one help me understand the best and possible ways to create ether wallet. What is the significance of creating ether wallet using mnemonic. What is BIP-0039 and BIP-0044 ? how does creating wallet using mnemonic work and its uses ?
Varun
  • 422
  • 3
  • 14
-1
votes
3 answers

Interpreting assembly listing for a toy ISA in the Dhamdhere textbook

Consider the following assembler output listing: START 100 MOVER BREG, ONE 101) + 04 2 105 MOVEM BREG, RESULT 102) + 05 2 106 PRINT RESULT 103) + 10 0…
paragjain
  • 265
  • 1
  • 5
  • 12
-1
votes
1 answer

Bitcoin mnemonic words/keys. Can be shorter than 12 by increacing set of words? Good idea or not?

Bitcoin mnemonic private key consist of 12 words. Theese words represent private key. I was thinking if it is possible to make it shorter than 12 by increasing set of words from which to choose. It would be easier to remember. Lets say we have set…
-1
votes
1 answer

Assembly language x86 - using NASM on Linux. EDX, ECX, EBX. EAX int 80h

This is a piece of assembly language code that my professor has given me. Can you talk me through how it works? Especially the "int 80h" parts. I've looked online for the answers but it doesn't really make sense to me. section .data string: db…
W_ Jonesey
  • 25
  • 1
  • 8
-1
votes
1 answer

Understand why Bitcoinlib is generating different addresses than what I have

Here is the library in question https://github.com/1200wd/bitcoinlib. When I try to create an address using the same keywords for example abs=a.from_passphrase('average title retreat fox hundred wife figure disease dry admit choice…
-1
votes
2 answers

How to enable "Generate Mnemonics Code" property of jLabel in Netbeans?

I am using Netbeans IDE, Version 8.1. How can we use Generate Mnemonics Code Property of jLabel? Kindly let me know, how can I use this and where is it useful?As shown in the image, I want to edit highlighted property
abhishekvbajaj
  • 73
  • 1
  • 10
-1
votes
1 answer

List of Hidden ARM 3 Letter mnemonics

x86 has had cases of the manufacturer inserting, new, undocumented opcodes at the time. Due to ARM holdings lack of a fab plant, there could be 'hidden' opcodes inserted by the licentiate. After using my google-fu this theory seems to be incorrect.…
TheBlueCat
  • 1,147
  • 5
  • 19
  • 38
-1
votes
1 answer

C#.NET mnemonics unexpected behaviour

I have few buttons in my windows application which has mnemonics.Now if i press multiple keys the events of the button clicks gets fired as i have used mnemonics. But the behaviour is not as expected,because second button event handler is getting…
-2
votes
1 answer

Convert private key to string using ether.rs

I'm new to rust and currently exploring ethers.rs library. I want to print wallet's private key on the console for this first I'm building a mnemonic using. let mnemonic = Mnemonic::::new(&mut rand::thread_rng()); now using this mnemonic I…
1 2 3
9
10