Click here to Skip to main content
15,790,243 members
Home / Discussions / C#
   

C#

 
QuestionParsing Text file Data Pin
MussaratAziz28-Aug-07 21:32
MussaratAziz28-Aug-07 21:32 
AnswerRe: Parsing Text file Data Pin
Christian Graus28-Aug-07 21:45
protectorChristian Graus28-Aug-07 21:45 
AnswerRe: Parsing Text file Data Pin
J4amieC28-Aug-07 23:11
J4amieC28-Aug-07 23:11 
GeneralRe: Parsing Text file Data Pin
ChandraRam29-Aug-07 0:50
ChandraRam29-Aug-07 0:50 
GeneralRe: Parsing Text file Data Pin
J4amieC29-Aug-07 1:32
J4amieC29-Aug-07 1:32 
Questiondouble click on ListBox items Pin
Maddie from Dartford28-Aug-07 21:25
Maddie from Dartford28-Aug-07 21:25 
AnswerRe: double click on ListBox items Pin
Martin#28-Aug-07 22:33
Martin#28-Aug-07 22:33 
GeneralRe: double click on ListBox items Pin
Maddie from Dartford29-Aug-07 3:04
Maddie from Dartford29-Aug-07 3:04 
Thanks a lot Martin.

I was approaching to ur suggestion only. Meanwhile i got other suggestion also. I would like to share it with you.

Add this to your double-clicked event handler:

Point p = Cursor.Position;
p = listBox1.PointToClient(p);
if (listBox1.IndexFromPoint(p) != -1)
{
//An item was double-clicked!
}

it also works fine for me.
GeneralRe: double click on ListBox items Pin
Martin#29-Aug-07 3:11
Martin#29-Aug-07 3:11 
Questionreports in c# Pin
Sonia Gupta28-Aug-07 21:13
Sonia Gupta28-Aug-07 21:13 
QuestionRendering movie in Desktop background Pin
Anindya Chatterjee28-Aug-07 20:54
Anindya Chatterjee28-Aug-07 20:54 
QuestionWord file parser Pin
Rahul.RK28-Aug-07 20:13
Rahul.RK28-Aug-07 20:13 
AnswerRe: Word file parser Pin
Justin Perez29-Aug-07 2:43
Justin Perez29-Aug-07 2:43 
QuestionCalling BRE rules in C# project Pin
Prashant C28-Aug-07 20:13
Prashant C28-Aug-07 20:13 
AnswerRe: Calling BRE rules in C# project Pin
Michael Sync28-Aug-07 20:46
Michael Sync28-Aug-07 20:46 
GeneralRe: Calling BRE rules in C# project Pin
J4amieC28-Aug-07 23:07
J4amieC28-Aug-07 23:07 
GeneralRe: Calling BRE rules in C# project Pin
Michael Sync29-Aug-07 0:18
Michael Sync29-Aug-07 0:18 
QuestionMotion Detection Pin
Hussain Deen28-Aug-07 19:25
Hussain Deen28-Aug-07 19:25 
AnswerRe: Motion Detection Pin
Christian Graus28-Aug-07 21:47
protectorChristian Graus28-Aug-07 21:47 
QuestionImporting multiple projects (not solutions) in vs2005 at once Pin
shatterstar645728-Aug-07 18:22
shatterstar645728-Aug-07 18:22 
QuestionShared variable across processes Pin
xavierakx28-Aug-07 17:03
xavierakx28-Aug-07 17:03 
AnswerRe: Shared variable across processes Pin
Super Lloyd28-Aug-07 17:50
Super Lloyd28-Aug-07 17:50 
QuestionUPnP C# application‏ Pin
crazy friend28-Aug-07 16:23
crazy friend28-Aug-07 16:23 
AnswerRe: xcopy and timestamp Pin
Spacix One28-Aug-07 15:28
Spacix One28-Aug-07 15:28 
GeneralRe: xcopy and timestamp Pin
devvvy28-Aug-07 15:47
devvvy28-Aug-07 15:47 

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.