B2021-006: Dragging text from Microsoft Word across PROMS treeview causes program to close.

This commit is contained in:
Kathy Ruffing 2021-04-06 14:58:52 +00:00
parent 5cd501c122
commit 23659c9b93

View File

@ -3728,6 +3728,10 @@ namespace Volian.Controls.Library
{
try
{
// B2021-006: dragging text from Microsoft Word onto the tree view was crashing PROMS
// This included dragging text from the Word doc editor within PROMS. Check object type:
Object tmp = datobj.GetData(s);
if (!(tmp is TreeNode)) return null;
return (TreeNode)datobj.GetData(s);
}
catch (Exception ex)