3
Answers

C# Detecting an attempt to download a file

Jones Junior

Jones Junior

13y
1.6k
1
Hello to everyone - Just getting started on things and I hope to be able to answer some questions you may have at some point, but for now I just have a ton of questions.
Thanks in advance for any answers.

I'm in need of knowing how to detect through C# if something is attempting to download something to my computer.
For example.  If I see a new program that I like, (Firewall, Antivirus....) and I click download, is there a way to detect that attempt to download after I click it?
I see the download box coming up, but would love to know the network side of my pc.

Thanks so much and I can certainly clarify if need be.

Good day
Answers (3)
0
Ranjit Powar

Ranjit Powar

NA 8.1k 496.6k 7y
Use this code in selected index changed event of combobox
 
for(int i=0; i<dataGridView1.Rows.Count;i++)
{
   dataGridView1.Rows[i].Cells[6].Value=comboBox1.SelectedValue;
}
 
 
Accepted
0
Mayank Jani

Mayank Jani

NA 154 3.8k 7y
Hii Ranjit,
thank you for your reply. there is just one little change I have to do that is instead of 'combobox1.SelectedValue' I added 'SelectedItem'. it is because when I used SelectedValue, and changed the value from combobox, all the values went blank...
 
'combobox1.text' also works.
 
anyway, my problem is solved.
thank you once again.
 
Mayank Jani