We have an MDI form which contains some number of child forms which have varying captions showing the currently loaded document's filename. When the child forms are maximized their title text gets placed in the parent window's title bar which often results in the text being too long to fit in the bar and Windows is nice enough to add ellipses and truncate the text.
However, when you hover over the title bar of the main window, it shows a tooltip with what should be the entire string, but instead the tooltip often contains a small fraction of the string. For example, if the main form's text was:
Program1 - Filename:[Really_long_filename_that_doesnt_fit.file]
It would appear as the following in the tooltip:
Program1 - Filename:[Really_long_filename_t
Edit: It always truncates the tooltip at exactly 100 characters, which leads me to believe that it's some upper limit specified somewhere.
Is there a way to change this so it displays the entire string, or if not, to disable the tooltip altogether?
Any language is acceptable, although we're doing this in C#.