Click here to Skip to main content
15,902,492 members
Home / Discussions / C#
   

C#

 
AnswerRe: doubt Pin
Richard Blythe10-Mar-09 20:05
Richard Blythe10-Mar-09 20:05 
AnswerRe: doubt Pin
Christian Graus10-Mar-09 20:09
protectorChristian Graus10-Mar-09 20:09 
AnswerRe: doubt Pin
Roger Wright10-Mar-09 20:10
professionalRoger Wright10-Mar-09 20:10 
QuestionWPF Binding Pin
anishkannan10-Mar-09 18:23
anishkannan10-Mar-09 18:23 
AnswerRe: WPF Binding Pin
Christian Graus10-Mar-09 18:43
protectorChristian Graus10-Mar-09 18:43 
GeneralRe: WPF Binding Pin
anishkannan10-Mar-09 19:21
anishkannan10-Mar-09 19:21 
GeneralRe: WPF Binding Pin
ABitSmart10-Mar-09 19:44
ABitSmart10-Mar-09 19:44 
QuestionDifferences between VS2008 & VS2008 Express Edition ! Pin
Mohammad Dayyan10-Mar-09 17:33
Mohammad Dayyan10-Mar-09 17:33 
AnswerRe: Differences between VS2008 & VS2008 Express Edition ! Pin
Xmen Real 10-Mar-09 17:49
professional Xmen Real 10-Mar-09 17:49 
AnswerRe: Differences between VS2008 & VS2008 Express Edition ! Pin
Drew Stainton10-Mar-09 18:06
Drew Stainton10-Mar-09 18:06 
Questionhow to Detect Hide Form? Pin
soulidentities10-Mar-09 16:25
soulidentities10-Mar-09 16:25 
AnswerRe: how to Detect Hide Form? Pin
Xmen Real 10-Mar-09 16:32
professional Xmen Real 10-Mar-09 16:32 
GeneralRe: how to Detect Hide Form? Pin
soulidentities10-Mar-09 17:39
soulidentities10-Mar-09 17:39 
GeneralRe: how to Detect Hide Form? Pin
Xmen Real 10-Mar-09 17:44
professional Xmen Real 10-Mar-09 17:44 
GeneralRe: how to Detect Hide Form? Pin
Richard Blythe10-Mar-09 20:02
Richard Blythe10-Mar-09 20:02 
GeneralRe: how to Detect Hide Form? [modified] Pin
soulidentities10-Mar-09 20:42
soulidentities10-Mar-09 20:42 
AnswerRe: how to Detect Hide Form? Pin
Roger Wright10-Mar-09 19:56
professionalRoger Wright10-Mar-09 19:56 
QuestionDataGridView and DataSets Pin
Illegal Operation10-Mar-09 14:25
Illegal Operation10-Mar-09 14:25 
AnswerRe: DataGridView and DataSets Pin
Jack Li10-Mar-09 15:50
Jack Li10-Mar-09 15:50 
GeneralRe: DataGridView and DataSets Pin
Illegal Operation10-Mar-09 15:53
Illegal Operation10-Mar-09 15:53 
AnswerRe: DataGridView and DataSets Pin
Xmen Real 10-Mar-09 16:26
professional Xmen Real 10-Mar-09 16:26 
use MouseDoubleClick instead...

Point p = dataGridView1.PointToClient(new Point(e.X, e.Y));
DataGridView.HitTestInfo tmp_hinfo = dataGridView1.HitTest(p.X, p.Y);
if (tmp_hinfo.RowIndex == -1 || tmp_hinfo.ColumnIndex == -1)
    return;
// Now you have row index and column index


TVMU^P[[IGIOQHG^JSH`A#@`RFJ\c^JPL>;"[,*/|+&WLEZGc`AFXc!L
%^]*IRXD#@GKCQ`R\^SF_WcHbORY87֦ʻ6ϣN8ȤBcRAV\Z^&SU~%CSWQ@#2
W_AD`EPABIKRDFVS)EVLQK)JKSQXUFYK[M`UKs*$GwU#(QDXBER@CBN%
Rs0~53%eYrd8mt^7Z6]iTF+(EWfJ9zaK-i’TV.C\y<pŠjxsg-b$f4ia>
--------------------------------------------------------
128 bit encrypted signature, crack if you can

AnswerRe: DataGridView and DataSets Pin
Samuel Cherinet10-Mar-09 17:45
Samuel Cherinet10-Mar-09 17:45 
QuestionASCII character conversion - this is driving me nuts Pin
Bryden.Murdoch10-Mar-09 14:12
Bryden.Murdoch10-Mar-09 14:12 
AnswerRe: ASCII character conversion - this is driving me nuts Pin
harold aptroot10-Mar-09 14:28
harold aptroot10-Mar-09 14:28 
AnswerRe: ASCII character conversion - this is driving me nuts Pin
Luc Pattyn10-Mar-09 15:14
sitebuilderLuc Pattyn10-Mar-09 15:14 

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.