Click here to Skip to main content
16,005,467 members
Home / Discussions / C#
   

C#

 
GeneralRe: Stretchable and movable line Pin
Christian Graus21-Sep-06 1:05
protectorChristian Graus21-Sep-06 1:05 
GeneralRe: Stretchable and movable line Pin
ssoffline21-Sep-06 1:11
ssoffline21-Sep-06 1:11 
GeneralRe: Stretchable and movable line Pin
Christian Graus21-Sep-06 1:20
protectorChristian Graus21-Sep-06 1:20 
GeneralRe: Stretchable and movable line Pin
mikone21-Sep-06 1:14
mikone21-Sep-06 1:14 
GeneralRe: Stretchable and movable line Pin
ssoffline21-Sep-06 1:42
ssoffline21-Sep-06 1:42 
Questionfew questions about database /datagrid Pin
faladrim20-Sep-06 23:56
faladrim20-Sep-06 23:56 
AnswerRe: few questions about database /datagrid Pin
Christian Graus21-Sep-06 0:14
protectorChristian Graus21-Sep-06 0:14 
AnswerRe: few questions about database /datagrid Pin
freshonlineMax21-Sep-06 0:21
freshonlineMax21-Sep-06 0:21 
Hi 1.Select entire row in datagrid :

<br />
private void dataGrid_MouseUp(object sender, System.Windows.Forms.MouseEventArgs e)<br />
{<br />
  System.Drawing.Point pt = new Point(e.X, e.Y); <br />
  DataGrid.HitTestInfo hti = dataGridSearch.HitTest(pt); <br />
<br />
  if (hti.Row == dataGridSearch.VisibleRowCount-1)  // "The Last Null Row"<br />
	return ;<br />
  dataGrid.Select(hti.Row);<br />
}		<br />


2.
I didn't understand
clicking on datagrid's column headers can sort columns.

3.Delete multi rows :
You should add one checked (boolean) column to your dataset's table. then datagrid show it, after user checks this columns, you can find checked chekboxes and delete them all.
GeneralRe: few questions about database /datagrid Pin
faladrim21-Sep-06 0:36
faladrim21-Sep-06 0:36 
QuestionHow to make an invisible exe ??? Pin
Waqas Nasir20-Sep-06 23:54
Waqas Nasir20-Sep-06 23:54 
AnswerRe: How to make an invisible exe ??? Pin
Christian Graus21-Sep-06 0:12
protectorChristian Graus21-Sep-06 0:12 
GeneralRe: How to make an invisible exe ??? Pin
Waqas Nasir21-Sep-06 0:39
Waqas Nasir21-Sep-06 0:39 
GeneralRe: How to make an invisible exe ??? Pin
Corinna John21-Sep-06 0:48
Corinna John21-Sep-06 0:48 
AnswerRe: How to make an invisible exe ??? Pin
J4amieC21-Sep-06 0:19
J4amieC21-Sep-06 0:19 
AnswerRe: How to make an invisible exe ??? Pin
Niiiissssshhhhhuuuuu21-Sep-06 0:35
Niiiissssshhhhhuuuuu21-Sep-06 0:35 
AnswerRe: How to make an invisible exe ??? Pin
Corinna John21-Sep-06 0:37
Corinna John21-Sep-06 0:37 
GeneralRe: How to make an invisible exe ??? Pin
Waqas Nasir21-Sep-06 0:47
Waqas Nasir21-Sep-06 0:47 
GeneralRe: How to make an invisible exe ??? Pin
Corinna John21-Sep-06 0:50
Corinna John21-Sep-06 0:50 
GeneralRe: How to make an invisible exe ??? Pin
Waqas Nasir21-Sep-06 0:59
Waqas Nasir21-Sep-06 0:59 
AnswerRe: How to make an invisible exe ??? Pin
Guffa21-Sep-06 1:02
Guffa21-Sep-06 1:02 
GeneralRe: How to make an invisible exe ??? Pin
Corinna John21-Sep-06 1:10
Corinna John21-Sep-06 1:10 
GeneralRe: How to make an invisible exe ??? Pin
Waqas Nasir21-Sep-06 1:14
Waqas Nasir21-Sep-06 1:14 
GeneralRe: How to make an invisible exe ??? Pin
Corinna John21-Sep-06 1:59
Corinna John21-Sep-06 1:59 
GeneralRe: How to make an invisible exe ??? Pin
Colin Angus Mackay21-Sep-06 2:50
Colin Angus Mackay21-Sep-06 2:50 
GeneralRe: How to make an invisible exe ??? Pin
Dave Kreskowiak21-Sep-06 3:18
mveDave Kreskowiak21-Sep-06 3:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.