NO

Author Topic: shortcuts in menu items  (Read 2309 times)

czerny

  • Guest
shortcuts in menu items
« on: August 19, 2014, 01:57:56 PM »
Pelles C doesn't know \a as a switch to right align shortcuts in menu items.

This doesn't work neither in resource scripts nor with AppendMenu.

See: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381024%28v=vs.85%29.aspx


JohnF

  • Guest
Re: shortcuts in menu items
« Reply #1 on: August 19, 2014, 04:01:52 PM »
I expect Pelle just passes the string, he has no reason to alter it so it's unlikely to be a bug. 

John

czerny

  • Guest
Re: shortcuts in menu items
« Reply #2 on: August 19, 2014, 04:18:08 PM »
He changed the string, but wrong. He doubles the backslash!
He should translate \a to \0x08 instead! (\b is working)

Alternatively one can treat this as an error in the MSDN documentation, because the actually working value is not \a but \b. :-)
« Last Edit: August 19, 2014, 04:30:52 PM by czerny »