public void onResetPlugin()
        {
            if (InvokeRequired)
            {
                BeginInvoke(new onResetPluginDelegate(onResetPlugin), new object[] { });
                return;
            } // if (InvokeRequired)

            cTask.clearRecordList();
            TB_RemoteHost.Text = String.Empty;
            setGUIActive();
            PluginParameters.HostApplication.PluginSetStatus(this, "grey");
        }
        public void onResetPlugin()
        {
            if (InvokeRequired)
            {
                BeginInvoke(new onResetPluginDelegate(onResetPlugin), new object[] { });
                return;
            } // if (InvokeRequired)


            TB_Address.Text = cPluginParams.HostApplication.GetCurrentIP();
            TB_Host.Text    = String.Empty;

            setGUIActive();
            cTask.clearRecordList();
            cPluginParams.HostApplication.PluginSetStatus(this, "grey");
        }