User Profile

Collapse

Profile Sidebar

Collapse
SampathTharanga
SampathTharanga
Last Activity: Apr 8 '18, 01:33 PM
Joined: Apr 4 '18
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • SampathTharanga
    replied to c# datagridview
    Hi rajapavan,
    Try like this code, I guess this code is helpfull for u.
    Code:
    int Value1=0, Value2=0;
    for (int row = 0; row < dataGridView1.Rows.Count; ++row)
    {
    Value1 = int.Parse(dataGridView1.Rows[row].Cells["Column1"].Value.ToString());
    Value2 = int.Parse(dataGridView1.Rows[row].Cells["Column2"].Value.ToString());
    
    if(Value1 > Value2)
        MessageBox.Show("Largest value
    ...
    See more | Go to post

    Leave a comment:


  • SampathTharanga
    replied to C# / C Sharp
    Hi rajapavan,
    Try like this code, I guess this code is helpfull for u.
    Code:
    int Value1=0, Value2=0;
    for (int row = 0; row < dataGridView1.Rows.Count; ++row)
    {
    Value1 = int.Parse(dataGridView1.Rows[row].Cells["Column1"].Value.ToString());
    Value2 = int.Parse(dataGridView1.Rows[row].Cells["Column2"].Value.ToString());
    
    if(Value1 > Value2)
        MessageBox.Show("Largest value
    ...
    See more | Go to post

    Leave a comment:


  • Hi guys,
    Here the solution.
    Thanks you,
    See more | Go to post

    Leave a comment:


  • Windows Form project restart button click then comes error?

    I develope Windows From project. However, I will click "Sign Out" button (It's used Application.Res tart() function) or "Exit" button (It for use Application.Exi t() function)then comes this error. Please give me some advice, how can fix this error....
    See more | Go to post
No activity results to display
Show More
Working...