Click here to Skip to main content
15,908,166 members
Home / Discussions / C#
   

C#

 
AnswerRe: Instantiating a Value Type in .NET Pin
Matthew Cuba7-Mar-07 1:09
Matthew Cuba7-Mar-07 1:09 
Questionlooking for guidelines about c# Pin
priychai6-Mar-07 19:09
priychai6-Mar-07 19:09 
AnswerRe: looking for guidelines about c# Pin
Sandeep Akhare6-Mar-07 19:59
Sandeep Akhare6-Mar-07 19:59 
AnswerRe: looking for guidelines about c# Pin
Colin Angus Mackay6-Mar-07 21:26
Colin Angus Mackay6-Mar-07 21:26 
QuestionRendering text using PostScript font in VS2005 Pin
vasantk6-Mar-07 18:59
vasantk6-Mar-07 18:59 
QuestionEvent handling in c# Pin
salon6-Mar-07 18:53
salon6-Mar-07 18:53 
AnswerRe: Event handling in c# Pin
Martin#6-Mar-07 19:58
Martin#6-Mar-07 19:58 
GeneralRe: Event handling in c# Pin
salon6-Mar-07 20:01
salon6-Mar-07 20:01 
if u can see the second URL
the code is
public class MyDataGrid : DataGrid

{
protected override void OnMouseMove(System.Windows.Forms.MouseEventArgs e)

{
// Get info to determine which cell to inspect.
DataGrid.HitTestInfo hti = this.HitTest(new Point(e.X, e.Y));
if(hti.Type == DataGrid.HitTestType.ColumnResize)
{
return; //no baseclass call
}
base.OnMouseMove(e);
} Confused | :confused:
GeneralRe: Event handling in c# Pin
Martin#6-Mar-07 20:09
Martin#6-Mar-07 20:09 
AnswerRe: Event handling in c# Pin
sam#6-Mar-07 19:59
sam#6-Mar-07 19:59 
GeneralRe: Event handling in c# Pin
salon6-Mar-07 20:03
salon6-Mar-07 20:03 
GeneralRe: Event handling in c# Pin
sam#6-Mar-07 20:09
sam#6-Mar-07 20:09 
AnswerRe: Event handling in c# Pin
Luc Pattyn7-Mar-07 8:28
sitebuilderLuc Pattyn7-Mar-07 8:28 
QuestionHow to keep ftp long time connection use c# 2.0-- FtpWebRequest! Pin
aa22236-Mar-07 17:51
aa22236-Mar-07 17:51 
QuestionXMLDataSource for ASP.NET only? Pin
rpourzia6-Mar-07 17:30
rpourzia6-Mar-07 17:30 
Questiondisable datagrid column width adjustment at runtime Pin
salon6-Mar-07 17:20
salon6-Mar-07 17:20 
AnswerRe: disable datagrid column width adjustment at runtime Pin
Keshav V. Kamat6-Mar-07 19:21
Keshav V. Kamat6-Mar-07 19:21 
GeneralRe: disable datagrid column width adjustment at runtime Pin
salon6-Mar-07 19:28
salon6-Mar-07 19:28 
GeneralRe: disable datagrid column width adjustment at runtime Pin
Keshav V. Kamat6-Mar-07 19:33
Keshav V. Kamat6-Mar-07 19:33 
GeneralRe: disable datagrid column width adjustment at runtime Pin
salon6-Mar-07 19:41
salon6-Mar-07 19:41 
GeneralRe: disable datagrid column width adjustment at runtime Pin
Keshav V. Kamat6-Mar-07 19:44
Keshav V. Kamat6-Mar-07 19:44 
GeneralRe: disable datagrid column width adjustment at runtime Pin
salon6-Mar-07 19:49
salon6-Mar-07 19:49 
GeneralRe: disable datagrid column width adjustment at runtime Pin
Keshav V. Kamat6-Mar-07 20:08
Keshav V. Kamat6-Mar-07 20:08 
GeneralRe: disable datagrid column width adjustment at runtime Pin
salon6-Mar-07 20:28
salon6-Mar-07 20:28 
AnswerRe: disable datagrid column width adjustment at runtime Pin
sam#6-Mar-07 19:55
sam#6-Mar-07 19:55 

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.