News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

New editor.

Started by hutch--, November 13, 2020, 11:19:02 AM

Previous topic - Next topic

stevenxie

hi,hutch. A new bug has happend.when I press "s" key in tedit, my computer screen shows a dialog bx of save as...., why is this?






Vortex

I can confirm it. Hitting s without CTRL is launching the Save As dialog box.

hutch--

Its set the CTRL + S as the hotkey. What I don't know is how a Chinese version of Win10 handles hotkeys.

hutch--

 :sad:

I can duplicate it as well. A stuffup in how the hotkeys are done. Will fix.

For anyone with the source, change this

      bypass1:
      ' --------------------------------
        CmpKey(%VK_SHIFT)
        ! je bypass2

To

      bypass1:
      ' --------------------------------
        CmpKey(%VK_CONTROL)
        ! jne bypass2

        CmpKey(%VK_SHIFT)
        ! je bypass2

I have replaced the complete project and the modified version.


stevenxie

Quote from: hutch-- on November 14, 2020, 11:55:08 PM
:sad:

I can duplicate it as well. A stuffup in how the hotkeys are done. Will fix.

For anyone with the source, change this

      bypass1:
      ' --------------------------------
        CmpKey(%VK_SHIFT)
        ! je bypass2

To

      bypass1:
      ' --------------------------------
        CmpKey(%VK_CONTROL)
        ! jne bypass2

        CmpKey(%VK_SHIFT)
        ! je bypass2

I have replaced the complete project and the modified version.

hi,hutch. Please you releae new version.

Vortex

Quote from: stevenxie on November 15, 2020, 02:38:57 AM
hi,hutch. Please you releae new version.

Hi stevenxie,

Hutch uploaded the new releases. Did you try them? The problem is solved.

stevenxie

all things ok,very good

bobl

"Wickedly crafted" looks right.
Thank you very much for this.
I use a few minimalistic editors and they start up fast but this is instantaneous and the DOS prompt looks very useful.