private void show_note_value()
        {
            string totalNoteValue = noteObject.ToString().Replace("<i>", "").Replace("</i>", "").Replace("&amp;", "&").Replace("&quot;", "\"").Replace("<b>", "(").Replace("</b>", ") ");

            if (base.thisBox.Width > 12)
            {
                if (totalNoteValue.Length > (base.thisBox.Width / 6))
                {
                    base.thisBox.Text = totalNoteValue.Substring(0, (base.thisBox.Width / 6)) + "...";
                }
                else
                {
                    base.thisBox.Text = totalNoteValue;
                }
            }
        }