hi,
i want to draw into other windows (with help of gdi+ or mdx).
i managed to draw into other winforms but my goal is to draw into a window that belongs to a game (dx).
how can i draw into the game's window (without flickering)? or is there any possibility that i lay a drawing over the game's window?
thx
Answers (1)
0
Hi kalyan
Please refer to this link
https://stackoverflow.com/questions/15129665/how-to-get-the-count-of-records-in-the-datasource-of-the-gridview
Accepted 0
Hi Kalyan,
You may try below code whether it is paging or not once row will bind it will count...
- int totalRow= 0;
- protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
- {
- if (e.Row.RowType == DataControlRowType.DataRow)
- {
- totalRow+=1;
- }
-
- }