3个回答
展开全部
标记下,晚上回答!
首记录:this.dataGridView1.CurrentCell = this.dataGridView1[this.dataGridView1.CurrentCell.ColumnIndex, 0];
上一记录:if (this.dataGridView1.CurrentCell.RowIndex > 0)
{
this.dataGridView1.CurrentCell = this.dataGridView1[this.dataGridView1.CurrentCell.ColumnIndex, this.dataGridView1.CurrentCell.RowIndex - 1];
}
下一记录:
if (this.dataGridView1.CurrentCell.RowIndex < this.dataGridView1.RowCount - 1)
{
this.dataGridView1.CurrentCell = this.dataGridView1[this.dataGridView1.CurrentCell.ColumnIndex, this.dataGridView1.CurrentCell.RowIndex + 1];
}
末记录:
this.dataGridView1.CurrentCell = this.dataGridView1[this.dataGridView1.CurrentCell.ColumnIndex, this.dataGridView1.RowCount - 1];
首记录:this.dataGridView1.CurrentCell = this.dataGridView1[this.dataGridView1.CurrentCell.ColumnIndex, 0];
上一记录:if (this.dataGridView1.CurrentCell.RowIndex > 0)
{
this.dataGridView1.CurrentCell = this.dataGridView1[this.dataGridView1.CurrentCell.ColumnIndex, this.dataGridView1.CurrentCell.RowIndex - 1];
}
下一记录:
if (this.dataGridView1.CurrentCell.RowIndex < this.dataGridView1.RowCount - 1)
{
this.dataGridView1.CurrentCell = this.dataGridView1[this.dataGridView1.CurrentCell.ColumnIndex, this.dataGridView1.CurrentCell.RowIndex + 1];
}
末记录:
this.dataGridView1.CurrentCell = this.dataGridView1[this.dataGridView1.CurrentCell.ColumnIndex, this.dataGridView1.RowCount - 1];
展开全部
private string GetPrevious(int ID,string SmallCid) { string str = "没有了"; string sql = "select ID,TxtTitle from tb_news where SmallCid=" + SmallCid + " and ID <" + ID + " Order by OrderID desc,ID desc"; DataSet ds = M.Query(sql); if (ds.Tables[0].DefaultView.Count > 0) { str = "<a href=\"/News-" + ds.Tables[0].Rows[0]["ID"] + ".aspx\">" + ds.Tables[0].Rows[0]["TxtTitle"] + "</a>"; } return str; } private string GetNext(int ID,string SmallCid) { string str = "没有了"; string sql = "select ID,TxtTitle from tb_news where SmallCid=" + SmallCid + " and ID>" + ID + " Order by OrderID desc,ID desc"; DataSet ds = M.Query(sql); if (ds.Tables[0].DefaultView.Count > 0) { str = "<a href=\"/News-" + ds.Tables[0].Rows[0]["ID"] + ".aspx\">" + ds.Tables[0].Rows[0]["TxtTitle"] + "</a>"; } return str; }
追问
要每个按钮实现一个功能啊!就是上面那个图!
追答
药品名称=txttitle,按钮。value=txttitle
select ID,TxtTitle from tb_news where SmallCid=" + SmallCid + " and ID " + ID + " Order by OrderID desc,ID desc,这是查询吓一跳信息
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
dataGridView1有自带的分页,设置哈就行。
追问
怎样设置呢!我是要实现按钮的上下查询!请详细一点!谢谢!
追答
找两个按钮,分别为上一页、下一页。接下来就查找看你有多少条数据,比如说有100条,每页设置10条,也就是有10页。初始的下一页,上一页是0,当点击下一页的时候加1,但不能超过10,这是要进行判断的,当点击上一页的时候就减1,同时也不能小于0.上面的给了你分页的语句,你只要将第几页写过去就行了,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |