Results 1 to 13 of 13

Thread: Shortcut key for Save and New

  1. #1

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Arrow Shortcut key for Save and New

    If CTRL + S is for Save then what would be best for Save and New?

    TIA
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  2. #2
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,957

    Re: Shortcut key for Save and New

    We use ctrl + S for save and ctrl + N for New. Most of our forms show the newly entered record when saving but if a form is geared towards entering a batch of records then saving a new record will automatically leave the user in New Mode, all cleared down and ready to accept the next record. If a form isn't geared towards batch entry then we'd expect the user to press ctrl + S followed by ctrl + N.
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

  3. #3

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Shortcut key for Save and New

    I actually have the following toolstrip options (Save and Close, Save and New and Cancel). I have used CTRL + S in the Save and Close, and Escape for the Cancel. I am
    not sure what to use on the Save and New. Anyone who has some recommendations?
    Attached Images Attached Images  
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  4. #4
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,957

    Re: Shortcut key for Save and New

    I think in your case I'd go for ctrl + N. I think that'd probably be instinctive enough. Or how about changing 'Save And New' to just 'New' but pop up a message box offering to save if the user has uncommitted changes?
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

  5. #5

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Shortcut key for Save and New

    I have considered CTRL + N but somehow it is more for New instead of Save and New. I may CTRL + S + N if it is even possible. 'Save And New' is now common so I am not inclined to change it for now.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  6. #6
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Shortcut key for Save and New

    How about CTRL+Shift+N or CTRL+Shift+S?

  7. #7

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Shortcut key for Save and New

    Thanks Hack, I am also considering those options although I would have wanted something that is already prevalently used with 'Save and New' since MS also uses this (Outlook) but I cannot find any shortcut key for it, only Alt + E for the E in the Menu.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  8. #8
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,957

    Re: Shortcut key for Save and New

    it is more for New instead of Save and New
    Do both options ever appear on the same form? If not I think I'd still go with ctrl + N but if they do it wouldn't work.

    Also, what does New without a save mean? Could you maybe rename that to 'Clear' or something similar (clicking New without saving might just mean clearing the displayed data ready for new input, for example)? Obviously not an option if your users are already used to New.

    edit> I think the Alt + S + N could be made to work although it's not directly supported. You'd have to monitor the key up and down events to record which keys were currently depressed. It's got the potential to get problematic but it's probably do-able with a bit of crowbarring. As a user, though, I'm not sure I'd thank you for the digital contortions you'd be making me go through. I find the successful key combos can usually be carried out with one hand
    Last edited by FunkyDexter; May 27th, 2009 at 01:01 PM.
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

  9. #9
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Shortcut key for Save and New

    Quote Originally Posted by dee-u View Post
    Thanks Hack, I am also considering those options although I would have wanted something that is already prevalently used with 'Save and New' since MS also uses this (Outlook) but I cannot find any shortcut key for it, only Alt + E for the E in the Menu.
    I'm not surprised that you aren't finding anything that is currently using a keycode combo for this as I've never heard of, not have I ever seen, a menu option for "Save And New" as a single menu item.

  10. #10

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Shortcut key for Save and New

    Quote Originally Posted by FunkyDexter View Post
    Do both options ever appear on the same form? If not I think I'd still go with ctrl + N but if they do it wouldn't work.

    Also, what does New without a save mean? Could you maybe rename that to 'Clear' or something similar (clicking New without saving might just mean clearing the displayed data ready for new input, for example)? Obviously not an option if your users are already used to New.

    edit> I think the Alt + S + N could be made to work although it's not directly supported. You'd have to monitor the key up and down events to record which keys were currently depressed. It's got the potential to get problematic but it's probably do-able with a bit of crowbarring. As a user, though, I'm not sure I'd thank you for the digital contortions you'd be making me go through. I find the successful key combos can usually be carried out with one hand
    In the main form there is the usual New, Edit, Delete and triggering New would open another form which has the options I posted. Save and Close would just save the record and close the form. Save and New would save the record but will ready the form for another entry of record. The Cancel will just close the form.

    Thanks for mentioning that S + N would be a little difficult to press at the same time with just one hand, I think I will eliminate this option because of that.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  11. #11

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: Shortcut key for Save and New

    Quote Originally Posted by Hack View Post
    I'm not surprised that you aren't finding anything that is currently using a keycode combo for this as I've never heard of, not have I ever seen, a menu option for "Save And New" as a single menu item.
    Save and New is in Outlook but as you said it is not a single menu item.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  12. #12
    Frenzied Member oceanebelle's Avatar
    Join Date
    Jun 2005
    Location
    my n00k.
    Posts
    1,064

    Re: Shortcut key for Save and New

    you could do CTRL+E so that it can be inline with CTRL+S if in the menu strip the short cut is S?

  13. #13
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,957

    Re: Shortcut key for Save and New

    To be honest, if you're really stuck you can just pick any arbitrary shortcut. Seriously, why does Save All have a shortcut of 'l'? The only answer is 'because we couln't think of anything else'.
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width