<br>Hi,<br><br>I have created my own object panel deriving from pqObjectPanel.&nbsp; My plugin needs to check that the meshing program is in the path.&nbsp; In my ServerManagerConfiguration XML file I have the following:<br><br>8&lt;----------------------------------------------------<br>
...<br>&lt;IntVectorProperty<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; name=&quot;ValidExeInfo&quot;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; command=&quot;isExecutableValid&quot;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; information_only=&quot;1&quot;&gt;<br>&nbsp;&nbsp;&nbsp; &nbsp; &lt;Documentation&gt;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp; This returns whether a valid executable has been selected.<br>&nbsp;&nbsp;&nbsp; &nbsp; &lt;/Documentation&gt;<br>&lt;/IntVectorProperty&gt;<br>...<br>----------------------------------------------------&gt;8<br><br>In my ObjectPanel class I use the following to check it:<br>
<br>QVariant v = pqSMAdaptor::getElementProperty(proxy()-&gt;GetProperty(&quot;ValidExeInfo&quot;));<br><br>This isExecutableValid function (defined as &quot;int isExecutableValid()&quot;) is never called.&nbsp; Am I doing something wrong?&nbsp; This method works for StringVectorProperty...<br>
<br>Any help would be appreciated,<br>Paul<br><br>