Right aligning the text in a set of menu items using ToolStripMenuItem.
Dim sf As New StringFormat
sf.Alignment = StringAlignment.Far
e.DrawBackground()
Dim oRect As RectangleF
e.Graphics.DrawString(Format(CInt(iArrSize(e.Index)), "#,###"), cbo.Font, System.Drawing.Brushes.Black, oRect, sf)
I would like to do the same using MenuStrip and ToolStripMenuItem. I would expect the code to be similar but based upon the ToolStripItemTextRenderEventArgs class. I have searched everywhere and tried everything that I can think of but without any success. Can someone help?

