Click here to Skip to main content
15,899,474 members
Home / Discussions / C#
   

C#

 
GeneralRe: trying to search a text file for a certain string and display it in a richTextBox Pin
OriginalGriff31-Mar-15 22:00
mveOriginalGriff31-Mar-15 22:00 
GeneralRe: trying to search a text file for a certain string and display it in a richTextBox Pin
Member 115700981-Apr-15 6:17
Member 115700981-Apr-15 6:17 
GeneralRe: trying to search a text file for a certain string and display it in a richTextBox Pin
OriginalGriff1-Apr-15 6:59
mveOriginalGriff1-Apr-15 6:59 
GeneralRe: trying to search a text file for a certain string and display it in a richTextBox Pin
Member 115700981-Apr-15 9:24
Member 115700981-Apr-15 9:24 
GeneralRe: trying to search a text file for a certain string and display it in a richTextBox Pin
Member 115700981-Apr-15 11:54
Member 115700981-Apr-15 11:54 
GeneralRe: trying to search a text file for a certain string and display it in a richTextBox Pin
Member 1157009831-Mar-15 6:26
Member 1157009831-Mar-15 6:26 
GeneralRe: trying to search a text file for a certain string and display it in a richTextBox Pin
Member 1157009831-Mar-15 5:01
Member 1157009831-Mar-15 5:01 
QuestionSplit list to two gridview columns in C# winforms Pin
arsale31-Mar-15 3:27
arsale31-Mar-15 3:27 
Hi, how to split list to two columns in winform gridview.
I have some list
C#
public static string[] addresses = { "192.168.1.45", "10.36.15.1", "10.36.47.1", "10.36.63.1", "10.36.50.1", "10.36.15.16", "10.36.47.11", "10.36.63.11", "10.36.50.16" };
and results are shown in a single column.
C#
List<string> resultsList = new List<string>();
           Parallel.ForEach(addresses, address =>
           {
               string ip = "";

<pre>
           Ping pinger = new Ping();
           PingReply reply = pinger.Send(address);
           if (reply.Status.ToString() != "Success")
               ip = address + "      Failed";

           else

               ip = reply.Address.ToString() + "  ,  Time: " + reply.RoundtripTime.ToString() + "ms   , " + " OK";
              pinger.Dispose();

            resultsList.Add(ip);

       });

       foreach (var something in resultsList)
       {
           dataGridView1.Rows.Add(something);

       }</pre>

I want to separate the results in two columns. Especially ip, especially time
Please help
AnswerRe: Split list to two gridview columns Pin
Eddy Vluggen31-Mar-15 7:31
professionalEddy Vluggen31-Mar-15 7:31 
GeneralRe: Split list to two gridview columns Pin
arsale31-Mar-15 10:46
arsale31-Mar-15 10:46 
GeneralRe: Split list to two gridview columns Pin
Eddy Vluggen31-Mar-15 13:03
professionalEddy Vluggen31-Mar-15 13:03 
GeneralRe: Split list to two gridview columns Pin
arsale31-Mar-15 23:20
arsale31-Mar-15 23:20 
GeneralRe: Split list to two gridview columns Pin
Eddy Vluggen31-Mar-15 23:41
professionalEddy Vluggen31-Mar-15 23:41 
GeneralRe: Split list to two gridview columns Pin
arsale31-Mar-15 23:58
arsale31-Mar-15 23:58 
GeneralRe: Split list to two gridview columns Pin
arsale1-Apr-15 0:09
arsale1-Apr-15 0:09 
GeneralRe: Split list to two gridview columns Pin
Eddy Vluggen1-Apr-15 0:24
professionalEddy Vluggen1-Apr-15 0:24 
GeneralRe: Split list to two gridview columns Pin
arsale1-Apr-15 0:28
arsale1-Apr-15 0:28 
QuestionCould not cal the repaint usercontrol?? Pin
Sarita S31-Mar-15 0:05
Sarita S31-Mar-15 0:05 
AnswerRe: Could not cal the repaint usercontrol?? Pin
OriginalGriff31-Mar-15 0:16
mveOriginalGriff31-Mar-15 0:16 
GeneralRe: Could not cal the repaint usercontrol?? Pin
Sarita S31-Mar-15 0:21
Sarita S31-Mar-15 0:21 
GeneralRe: Could not cal the repaint usercontrol?? Pin
OriginalGriff31-Mar-15 0:22
mveOriginalGriff31-Mar-15 0:22 
GeneralRe: Could not cal the repaint usercontrol?? Pin
Sarita S31-Mar-15 0:49
Sarita S31-Mar-15 0:49 
GeneralRe: Could not cal the repaint usercontrol?? Pin
OriginalGriff31-Mar-15 0:55
mveOriginalGriff31-Mar-15 0:55 
QuestionHow to have a Select Query like Sql Server Cross Apply query in MS-Access? Pin
Paramu197330-Mar-15 16:05
Paramu197330-Mar-15 16:05 
AnswerRe: How to have a Select Query like Sql Server Cross Apply query in MS-Access? Pin
Afzaal Ahmad Zeeshan30-Mar-15 16:20
professionalAfzaal Ahmad Zeeshan30-Mar-15 16:20 

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.