Click here to Skip to main content
15,888,461 members
Home / Discussions / C#
   

C#

 
AnswerRe: Datagrid Column Caption Problem While Binding Data Pin
N a v a n e e t h13-Feb-07 21:50
N a v a n e e t h13-Feb-07 21:50 
GeneralRe: Datagrid Column Caption Problem While Binding Data Pin
theprofound13-Feb-07 22:14
theprofound13-Feb-07 22:14 
Questionhow to close an form and its instance on click event of an button. Pin
monuSaini13-Feb-07 20:06
monuSaini13-Feb-07 20:06 
AnswerRe: how to close an form and its instance on click event of an button. Pin
miestas13-Feb-07 20:14
miestas13-Feb-07 20:14 
GeneralRe: how to close an form and its instance on click event of an button. Pin
monuSaini13-Feb-07 22:35
monuSaini13-Feb-07 22:35 
GeneralRe: how to close an form and its instance on click event of an button. Pin
miestas14-Feb-07 3:49
miestas14-Feb-07 3:49 
QuestionHow to Kill windows process from C# Pin
tario13-Feb-07 19:17
tario13-Feb-07 19:17 
AnswerRe: How to Kill windows process from C# Pin
miestas13-Feb-07 19:33
miestas13-Feb-07 19:33 
using System.Diagnostics;

Process[] proc = Process.GetProcessesByName("process_friendly_name");
foreach (Process pt in proc)
{
pr.Kill();
}
GeneralRe: How to Kill windows process from C# Pin
tario13-Feb-07 20:21
tario13-Feb-07 20:21 
GeneralRe: How to Kill windows process from C# Pin
Martin#13-Feb-07 20:31
Martin#13-Feb-07 20:31 
GeneralRe: How to Kill windows process from C# Pin
tario13-Feb-07 21:16
tario13-Feb-07 21:16 
QuestionC# Method for the VB.NET: Val(String)? Pin
JF201513-Feb-07 19:06
JF201513-Feb-07 19:06 
AnswerRe: C# Method for the VB.NET: Val(String)? Pin
stancrm13-Feb-07 19:51
stancrm13-Feb-07 19:51 
Questionhow to read Fast Large Xml File Pin
Sanjib Raj13-Feb-07 18:47
Sanjib Raj13-Feb-07 18:47 
AnswerRe: how to read Fast Large Xml File Pin
stancrm13-Feb-07 19:49
stancrm13-Feb-07 19:49 
GeneralRe: how to read Fast Large Xml File Pin
DavidNohejl14-Feb-07 0:28
DavidNohejl14-Feb-07 0:28 
AnswerRe: how to read Fast Large Xml File Pin
DavidNohejl14-Feb-07 0:32
DavidNohejl14-Feb-07 0:32 
QuestionUser Control Question.... Pin
Khoramdin13-Feb-07 18:40
Khoramdin13-Feb-07 18:40 
Questiondisplaying results in another form Pin
frossie13-Feb-07 18:27
frossie13-Feb-07 18:27 
AnswerRe: displaying results in another form Pin
miestas13-Feb-07 20:17
miestas13-Feb-07 20:17 
QuestionProblem with RichTextBox SelectedRtf Pin
Abisodun13-Feb-07 18:13
Abisodun13-Feb-07 18:13 
AnswerRe: Problem with RichTextBox SelectedRtf Pin
Apemania29-May-12 15:56
Apemania29-May-12 15:56 
GeneralRe: Problem with RichTextBox SelectedRtf Pin
Abisodun20-Jun-12 15:52
Abisodun20-Jun-12 15:52 
GeneralRe: Problem with RichTextBox SelectedRtf Pin
Apemania20-Jun-12 17:45
Apemania20-Jun-12 17:45 
QuestionSocket Programming. Pin
Rahul.RK13-Feb-07 18:09
Rahul.RK13-Feb-07 18:09 

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.