Quote Originally Posted by LaVolpe View Post
Ugh, ignore above.

If you want to draw underlined characters based on the system setting. It's easier than that:
The DRAWITEMSTRUCTURE you used for custom drawing menus tells you.
Code:
Dim DIS As DRAWITEMSTRUCTURE
Const ODS_NOACCEL As Long = &H100
...
  If (DIS.ItemState And ODS_NOACCEL) = 0 Then
      ' do draw with &
  Else
      ' don't draw with &
  End If
...
i'm trying use it... but don't works