Results 1 to 2 of 2

Thread: Retarded Hotkey...

  1. #1
    Registered User
    Join Date
    Oct 2003
    Posts
    25

    Retarded Hotkey...

    Due to mouse movement stuttering badly after I've been running EQ and MySEQ on the same comp for many hours, I always wanted a hotkey that could hit the "Stop" button. Well, I'm retarded when it comes to C#, and am just editing in notepad/wordpad, so had to work with what I could figure out.

    In frmMain.cs I found
    Code:
    // 
    // mnuSep1
    // 
    this.mnuSep1.Index = 2;
    this.mnuSep1.Text = "-";
    and changed it to
    Code:
    // 
    // mnuSep1
    // 
    this.mnuSep1.Index = 2;
    this.mnuSep1.Text = "-";
    this.mnuSep1.Shortcut = System.Windows.Forms.Shortcut.Ctrl0;
    this.mnuSep1.Click += new System.EventHandler(this.mnuKludge_Click);
    then added the following farther down
    Code:
    private void mnuKludge_Click(object sender, System.EventArgs e) 
    {
    	cmdCommand_Click(sender, e);
    }
    so that Ctrl+0 would click the "GO"/"Stop" button for me. Probably a stupid way to do it, but I wasn't having luck directly applying a shortcut to the button.

    If you could add this, or add it properly (hotkey assigned directly to the button) to the next release, it'd be neat. ^_^

    Old No Name

  2. #2
    Registered User slartibartfast's Avatar
    Join Date
    Apr 2002
    Posts
    176

    Re: Retarded Hotkey...

    I'll have a look what i can do.

    Some people wanted the ability to pause the updates as well.
    "Come," called the old man, "come now or you will be late."

    "Late?" said Arthur. "What for?"

    "Late, as in the late dentarthurdent," said the old man, sternly. "It's a sort of threat you see."

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

You may post new threads
You may post replies
You may post attachments
You may edit your posts
HTML code is Off
vB code is On
Smilies are On
[IMG] code is On