Jump to content
Xtreme .Net Talk

gl3nt0n

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by gl3nt0n

  1. hey folks! i'm trying to clear some cells in a datagrid, and can't figure out how to do it. here's what i got so far : //clear the three last columns for (i=3;i<=5;i++) { for (j=1; j<=4;j++) { DGStats.CurrentCell = new DataGridCell(j, i); DGStats.Text = string.Empty; } } in vb6 this approach used to work: setting row and column, and then setting the text property. but in .NET i'm kinda lost. such a simple task ... thanks for any insight you ay have, G.
  2. check if the right or left mouse button pressed hey, wondering how i can achieve this in a hover situation. i have a bunch of labels i want to change properties of, when hovered with the mouse button down, but the hover method doesn't take MouseEventArgs, only EventArgs ... if anyone has an idea, let me know. thanx :D G. Split from http://www.xtremedotnettalk.com/showthread.php?t=69285
×
×
  • Create New...