Disable Automatic Treeview Tooltip

How about some more info? Like what kind of OCX do you use? Progress does not have a Built In TreeView, so it must be something external.
 
Still not found a fix to this.
Found on a different site that the following worked for a user but I still have no idea how to implement it into Progress...

Add a new class to your project and paste this code:

using System;
using System.Windows.Forms;

public class MyTreeView : TreeView {
protected override CreateParams CreateParams {
get {
CreateParams parms = base.CreateParams;
parms.Style |= 0x80; // Turn on TVS_NOTOOLTIPS
return parms;
}
}
}
 
Back
Top