Hi Shanmugam,
To prevent the right click from making any selection in a TreevViewAdv, you could derive the TreeViewAdv and override the OnMouseDown. In the override method dont call the base for right click.
public class MyTreeViewAdv : TreeViewAdv
{
protected override void OnMouseDown(MouseEventArgs e)
{
if(e.Button != MouseButtons.Right)
base.OnMouseDown(e);
}
}
Let us know if you have any further questions.
Regards,
Rajagopal