//private void Call老龄津贴_停发( object obj )
        //{
        //    //MessageBox.Show( "Call老龄津贴_发放" );
        //    F查找人员 fm = new F查找人员();
        //    if ( fm.ShowDialog() != DialogResult.OK )
        //        return;

        //    UI.Dlg.AskDlg dlg = new AskDlg();
        //    dlg.strNote = String.Format( "是否停发 {0} 的老龄津贴?", fm.stru.姓名 );
        //    if ( dlg.ShowDialog() != DialogResult.OK )
        //        return;

        //    MessageBox.Show( "停发" );
        //}

        private void 停发老龄津贴()
        {
            FEdit fm = new FEdit();
            if ( fm.ShowDialog() != DialogResult.OK )
                return;
        }
        void Modify( int nRow, int nCol )
        {
            if ( nRow < 0 || nRow >= _lst.Count )
                return;

            DB.Stru.老龄办.停发老龄津贴 struSel = fl.grd.Rows[ nRow ].DataBoundItem as DB.Stru.老龄办.停发老龄津贴;
            if ( struSel == null )
                return;

            FEdit fm = new FEdit();
            fm.stru = struSel;
            if ( fm.ShowDialog() != DialogResult.OK )
                return;

            if ( fm.stru.ID == "" )   //delete
                _lst.RemoveAt( nRow );
            else    //modify
                _lst[ nRow ] = fm.stru;

            //Refreah
            //Fill();
            Find();
        }