摘要:
http://topic.csdn.net/t/20041001/07/3422642.html方法1: 上下两个节点交换一下内容 方法2: 先取得选中的节点: Dim item As ListViewItem = Me.ListView1.SelectedItems(0) Dim index As Integer = Me.ListView1.SelectedItems(0)... 阅读全文
摘要:
建一个表 t_hoteladvertise 有如下字段:ID 自动增长(主要)SortID INT (主要)Title NVARCHAR(50) 代码: CREATE proc sp_ehotel_DownAdvertise@ID INTasDECLARE @SortID intDECLARE @TempSortID INTDECLARE @TempID INTBEGIN TRANSELECT @... 阅读全文
摘要:
int rows = dataGridView1.indexrows;//获得选种行的索引string str = dataGridView1.rows[rows].cells[num].text;//获取第rows行的索引为num列的值 阅读全文