Click here to Skip to main content
15,949,686 members

Comments by Pradeep Arthanari (Top 7 by date)

Pradeep Arthanari 8-Jan-18 3:45am View    
Check if the firewall ports are opened between your machine and the SMTP server - 118.67.248.63:25

You can check that by doing a telnet <ip> <port> from the source machine.
Pradeep Arthanari 3-Jan-18 2:06am View    
I would suggest you to use one common check box instead of radio button to select/unselect. you can try the below code for that:

private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
for (int i = 0; i < routeNamesListView.Items.Count; i++)
{
if (checkBox1.Checked)
routeNamesListView.Items[i].Checked = true;
else
routeNamesListView.Items[i].Checked = false;
}
}

And enable your checkbox in the page load itself as your listview is checked by default.

checkBox1.Checked = true;
Pradeep Arthanari 3-Jan-18 1:57am View    
Try to keep the ListView and radio button check in Sync. I mean check your check box on page load itslef as your listview is checked by default.

t1RadioButton.Checked = true;
Pradeep Arthanari 3-Jan-18 1:28am View    
Could you copy your code.
Pradeep Arthanari 3-Jan-18 0:56am View    
Pls refer my above code. It has got a radio button to select/deselect all the checkboxes in the list view control.

You need to add a radio button and add the 2 events for the radio button given above (Checkchanged & Click)