예제 #1
0
        /// <summary>
        /// Get the status of the client registry
        /// </summary>
        void m_crStatus_DoWork(object sender, DoWorkEventArgs e)
        {
            PdqCommunications crc = new PdqCommunications();

            e.Result = crc.IsCrAvailable(this.m_clientConnector);
        }
예제 #2
0
 /// <summary>
 /// Populate the auto-complete data worker thread
 /// </summary>
 void m_populateAutoComplete_DoWork(object sender, DoWorkEventArgs e)
 {
     PdqCommunications crc = new PdqCommunications();
     e.Result = crc.Filter(this.m_clientConnector, e.Argument.ToString());
 }
예제 #3
0
        /// <summary>
        /// Populate the auto-complete data worker thread
        /// </summary>
        void m_populateAutoComplete_DoWork(object sender, DoWorkEventArgs e)
        {
            PdqCommunications crc = new PdqCommunications();

            e.Result = crc.Filter(this.m_clientConnector, e.Argument.ToString());
        }
예제 #4
0
 /// <summary>
 /// Get the status of the client registry
 /// </summary>
 void m_crStatus_DoWork(object sender, DoWorkEventArgs e)
 {
     PdqCommunications crc = new PdqCommunications();
     e.Result = crc.IsCrAvailable(this.m_clientConnector);
 }