On Thu, Jul 9, 2009 at 15:53, Anders Jonssonanders.jonsson@norsjonet.se wrote:
POPUP "&Info" {
- MENUITEM "&Fastest Times", IDM_TIMES
- MENUITEM "&Fastest Times...", IDM_TIMES
MENUITEM "&About", IDM_ABOUT }
According to Microsoft's guidelines, an ellipsis is only necessary when the command asks for confirmation or additional parameters. "If simply viewing the window is a common action, don't use an ellipsis."
http://msdn.microsoft.com/en-us/library/aa511502.aspx#ellipses
Yuri Khan wrote:
On Thu, Jul 9, 2009 at 15:53, Anders Jonssonanders.jonsson@norsjonet.se wrote:
POPUP "&Info" {
MENUITEM "&Fastest Times", IDM_TIMES
}MENUITEM "&Fastest Times...", IDM_TIMES MENUITEM "&About", IDM_ABOUT
According to Microsoft's guidelines, an ellipsis is only necessary when the command asks for confirmation or additional parameters. "If simply viewing the window is a common action, don't use an ellipsis."
http://msdn.microsoft.com/en-us/library/aa511502.aspx#ellipses
I see.
Then the reason that "Fastest times" in the original minesweeper have an ellipsis is that the user there can choose between pressing OK or to clear all high scores.