Questions tagged [mnemonics]

138 questions
1
vote
0 answers

I have BIP39 mnemonic and need BIP44 xpub

I have a 12 words valid mnemonic phrase and I need to get it's Bip44 Extended Public Key so I can check if it had past transactions. I wasn't able to find any explanation/documentation on how to get what I need or how the process works (or maybe…
CsgoTalks Com
  • 151
  • 1
  • 1
  • 10
1
vote
1 answer

Mnemonic working for MenuBar but not MenuItems

My program has a menu bar with one menu one it called "File." Inside the file menu there are 4 options: "New", "Pause", "Unpause", and "Exit". All five of these have mnemonics assigned however only the one for File works the way I had hoped. The…
Sean
  • 35
  • 9
1
vote
0 answers

F1-F12 Mnemonic Java

So I've been working on setting up a really basic menu for Java with a couple of different ways to select MenuItems, and I came across a weird situation. If I try to use the F1-F12 keys with a KeyListener and KeyEvent, it reads alternate keys…
Pesi
  • 13
  • 3
1
vote
0 answers

Opcode manual for GNU's GAS

I was trying to understand some assembly code for x86 written to be assembled using the GNU's assembler - GAS . Can anyone suggest some ref. for looking up the syntax for the opcodes/mnemonics in GAS.
HungryFoolish
  • 542
  • 1
  • 9
  • 27
1
vote
1 answer

JButton mnemonic underline only on ALT key

JFrame f = new MnemoticTest(); JButton b=new JButton("bat"); b.setMnemonic(KeyEvent.VK_B); f.add(b); f.setSize(400, 700); f.setVisible(true); Hello, I got the above code. When it loads, the…
user4752891
1
vote
1 answer

What numeric values defines in dissembled of C code?

I'm understanding the assembly and C code. I have following C program , compiled to generate Object file only. #include int main() { int i = 10; int j = 22 + i; return 0; } I executed following command objdump -S…
BSalunke
  • 11,499
  • 8
  • 34
  • 68
1
vote
1 answer

How can I use mnemonics on JavaFX 8 Alerts

I would like to be able to add accelerator keys for the buttons that are provided as a part of the Alert Dialog Controls included with JavaFX. I am unsure if this is possible using the standard alert types ERROR, INFORMATION, CONFIRMATION,…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68
1
vote
2 answers

PIC16F883 timer won't work

I am currently working on programming a PIC16F883 with a 3.2768 MHz oscilator. I need to make some LED blink at the right time, but that is really not relevant here. The problem is that have set up Timer0, but it isn't working. I am going to post my…
1
vote
1 answer

Convert this 32-Bit Machine Code to Assembly language

What is the easiest way to convert the following Bytecode to Assembly language? 83 EC 8B 55 51 53 AC C4 05 8B 64 57 00 00 00 30 8B 0C 40 8B 00 8B 0C 40 58 8B 00 8B 03 D8 89 18 50 8B 3C 40 8B DA 01 78 DF 01 20 7A 07 8B C9 31 38 81 D8 01 61 65 72 43…
nemoest
  • 81
  • 1
  • 10
1
vote
1 answer

Mono / GTK# mnemonics underline doesn't show in OSX

OSX Mavericks 10.9.4, Mono 2.10.12, MonoDevelop 3.1.1 No matter what I do, I can't get the mnemonic underline on my (text) button to show (even when I keep Alt/Command pressed). Here's what I tried: Using MonoDevelop's Stetic GUI designer with an…
Ohad Schneider
  • 36,600
  • 15
  • 168
  • 198
1
vote
3 answers

Database mnemonics

I'm looking for mnemonics to help me with databases, the relational model and transaction theory. For example I learned "ACID" to help me remember the properties of a transaction: atomicity, consistency, isolation, and durability. What others are…
Justin R.
  • 23,435
  • 23
  • 108
  • 157
1
vote
0 answers

ALT + Key is not working in Java 5 swing after an internal frame is closed

We migrated our swing application from JAVA 1.4 to JAVA 5, the problem we are facing is that the ALT + Key is not working in Java 5 after an internal frame is closed. It works as long as any of the internal frames are not closed. It again works when…
1
vote
3 answers

How to disable mnemonics?

I'm extending Eclipse using the Eclipse plugin infrastructure, and I've come into a problem: I created an Eclipse editor and I would like to disable the mnemonic menus Eclipse, for example: ALT + a is equivalent to the menu Search. Because I need…
Imen
  • 161
  • 1
  • 7
1
vote
2 answers

assembly language - c-language and mnemonics

I wrote a simple program in c-language, the classic helloworld. I wanted to know how it looked liked when the compiler translated it to assembly code. I use MinGW and the command: gcc -S hellow.c When I opened this file I expected it would, AT THE…
Björn Hallström
  • 3,775
  • 9
  • 39
  • 50
1
vote
1 answer

Change mnemonic for Menu on Menubar from default Alt to Ctrl?

I want to use Ctrl instead of Alt for mnemonics of a menu on a menubar. I think it involves using a setAccelerator. formatMenu.setMnemonic(KeyEvent.VK_F); sizeMenu.setMnemonic(KeyEvent.VK_X); styleMenu.setMnemonic(KeyEvent.VK_Z); This is initalised…
user1870404
  • 31
  • 1
  • 4