C # WinForm ListView multi-row Delete operation

Source: Internet
Author: User

//Button Delete, delete selected items from databasePrivate voidButtondelete_click (Objectsender, EventArgs e) {DialogResult Dr= MessageBox.Show ("Is sure to delete selected items?", This.    Text, Messageboxbuttons.okcancel, messageboxicon.question); if(dr = =DialogResult.OK) {Try        {            using(SqlConnection conn =NewSqlConnection (connectionString)) {Conn.                                               Open (); using(SqlCommand cmd =Conn. CreateCommand ()) {stringsql =""; stringID =""; foreach(ListViewItem Iteminch  This. Listview1.selecteditems) {ID= Item. subitems[0]. Text.trim ();//0 is the index of ID, column in ListView1sql =string. Format ("Delete from users where id= ' {0} '", id); Cmd.commandtype=CommandType.Text; Cmd.commandtext=SQL; Cmd.                    ExecuteNonQuery ();            }} freshdata (conn); }        }        Catch(Exception ex) {MessageBox.Show (ex). ToString (), This.        Text); }    }} //Button Remove, remove selected items from ListView1Private voidButtonremove_click (Objectsender, EventArgs e) {    foreach(ListViewItem Iteminch  This. Listview1.selecteditems) {        if(item. Selected) {Item.        Remove (); }    }     This. Listview1.refresh ();} //Function Fresh Data, write by your selfPrivate voidFreshdata (SqlConnection conn) {}

C # WinForm ListView multi-row Delete operation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.