Exemplo n.º 1
0
 private void GeneticsMainForm_FormClosing(object sender, FormClosingEventArgs e)
 {
     if (!_batchClose)
     {
         RabbitCommandMessage cmd = new RabbitCommandMessage();
         cmd.Command              = RabbitCommandMessage.Commands.ForgetWindow;
         cmd.TargetRabbitID       = 0;
         cmd.SourceWindowRabbitID = _rabbitID;
         GeneticsManager.BroadcastSearch(cmd);
         GeneticsManager.RemoveForm(_rabbitID);
     }
 }
Exemplo n.º 2
0
 private bool rabbitField1_SearchGoingOn(RabbitCommandMessage cmd)
 {
     //			cmd.SourceRabbitID = _RabbitID;
     return(GeneticsManager.BroadcastSearch(cmd));
 }