Questions tagged [mnemonics]

138 questions
0
votes
1 answer

Call JButton pressed animation using mnemonic

Heres a sample code, i´ve tried most of the JButton settings but couldn´t figure it out. import java.awt.event.*; import javax.swing.*; public class FailedMnemonic extends JFrame implements Runnable{ /* * * F4 to call button…
Wesos de Queso
  • 1,526
  • 1
  • 21
  • 23
0
votes
0 answers

Is there an instruction for Intel Assembly to do a call with a conditional?

I really need an instruction that would do something like jz (jump if 0) but with a call instead of a jump because I need the program to return to the place it was before the jump. I am working with nasm (if that makes any difference) Thank you so…
Tammy Moscoso
  • 57
  • 1
  • 6
0
votes
1 answer

WPF - Remove mnemonic function from textbox

Just discovered what is causing a HTML editor to throw the toys out when using a certain letter on a keyboard... On the same page there are textboxes that contain things like html page name, title, navigate URL, menu text.... If one of the textboxes…
gchq
  • 1,603
  • 2
  • 27
  • 52
0
votes
0 answers

JMenu Mnemonic characters are displayed permanently

I have a little Problem, even though my ALT Key isn't down (the key is not broken, neither is it stuck) it permanently highlights the JMenu components (Not just the single menus but also their sub-menu characters) Mnemonic Characters. Update: I…
Marcel
  • 1,509
  • 1
  • 17
  • 39
0
votes
3 answers

What is the difference between Mnemonics and Opcode

In assembly language under the instruction set of a 8085 microprocessor, suppose we have the following operation ADD B. I know this means "Add the data of register of B to the Accumulator register and save the contents back to the…
Shivam Aggarwal
  • 734
  • 2
  • 9
  • 23
0
votes
0 answers

Menu mnemonic doesn't work

optionsMenu = new JMenu("Options"); optionsMenu.setMnemonic(KeyEvent.VK_O); optionsMenu.getAccessibleContext().setAccessibleDescription("Options Menu"); menuBar.add(optionsMenu); However, when I actually hit O in runtime, the menu doesn't open.…
Daniel Paczuski Bak
  • 3,720
  • 8
  • 32
  • 78
0
votes
1 answer

Set ToolStripMenuItem mnemonic programmatically

I am adding ToolStripMenuItems to a menu based on the COM ports available on the machine, to allow the user to check one for use. I'd like to add a mnemonic for each menu item such that the result would be the same as if I had manually added "COM&6"…
Toby
  • 9,696
  • 16
  • 68
  • 132
0
votes
1 answer

java.awt.Robot : hit mnemonics key not working

I created a simple program to use a awt.robot which supposedly press ALT+F and it should open a menu item. But it's not working. Initially I thought focus issue. Then I add a dummy button to get the focus but still id did not work. Please see the…
nantitv
  • 3,539
  • 4
  • 38
  • 61
0
votes
1 answer

JavaFX: JFXPanel in JFrame - Prevent JMenuBar mnemonics

I have JFXPanel's contained within a JFrame that has a JMenuBar up top. The menus have mnemonics associated with them, though the JFXPanel's have button's with mnemonics associates with them as well. Currently pressing Alt + C invokes the JFXPanel…
Tommo
  • 977
  • 14
  • 35
0
votes
1 answer

Java - Mnemonic underline position

Say I have a JMenuItem who's name is "This is a Test". If I want to set it's mnemonic to 'T', it automatically underlines the first T in "This". Can I change this, so it underlines the T in "Test" instead?
MCMastery
  • 3,099
  • 2
  • 20
  • 43
0
votes
1 answer

confusion on generating object code in SIC assemblers output

So right now I'm trying to understand how object code is generated but thse two lines really confuse me, anyone want explain it to me? RSUB is 4C0000, I understand RSUB is 4C Mnemonic, but where did 0000 came from? EOF BYTE C'EOF' Object code is…
user4139003
0
votes
0 answers

Machine Code of different instructions and labels in emu8086

I would like convey my gratitude in advance. I'd like to ask about the machine code regarding a program in emu8086 as below: ORG 100H MOV AX,01H MOV CX,03H loop1: NOP LOOP loop1 DEC AX JZ loop2 ADD…
OneBaseNotch
  • 183
  • 1
  • 2
  • 7
0
votes
0 answers

jlist check boxes setmnemonics java swing

I am thinking if it is possible to put or setmnemonics on a jlist item so far i search for jlist tutorials and almost all of them is having the event mouse click so i am thinking if it is possible to put mnemonics for each item in the list i am…
Brownman Revival
  • 3,620
  • 9
  • 31
  • 69
0
votes
0 answers

Finding mnemonic sentences and acrostics

There are many websites with which one can carry out searches to return results with specific constraints from a dictionary with the purpose of solving word puzzles. But is there a way to search a specific text document, other than a dictionary, so…
truthling
  • 134
  • 10
0
votes
0 answers

MIPS Instruction code conversion to binary TIPS?

I am studying for the MIPS instruction code conversion to binary. I noticed while doing some conversions that instructions are formatted differently depending on the mnemonics(since DIFFERENT OPERATIONS) even they are the same I-type. sw $t7,…
user3754212
  • 31
  • 1
  • 9