Luizdodibre
Luizdodibre
CC#
Created by Luizdodibre on 7/16/2023 in #help
✅ Listview color
How do i put a different color for a specific item of a listview?
11 replies
CC#
Created by Luizdodibre on 10/19/2022 in #help
wait for processes [closed]
I want to wait for a process to close to perform some action how can I do that?
6 replies
CC#
Created by Luizdodibre on 10/9/2022 in #help
Process Checker [Answered]
I'm creating an ""antivirus"" and I'm using a thread to check when a new process is started (but the thread is consuming a lot of cpu and I was wondering if there is another way to do this)
20 replies
CC#
Created by Luizdodibre on 10/7/2022 in #help
Files on desktop [Repost]
I want to check files that have been added or edited (I thought of using fileSystemWatcher but every time I edited a file it was executed 3 times (but I don't know if this is the best way)) continuing.. I want to check the files from desktop to know if a file has been added or edited and my main point is to get the path of the edited file (if anyone can give me an idea on how to do this I would be very grateful (remembering that I don't know if fileSystemWatcher is the best way to check that)
6 replies
CC#
Created by Luizdodibre on 10/7/2022 in #help
Files on desktop
I want to check files that have been added or edited (I thought of using fileSystemWatcher but every time I edited a file it was executed 3 times (but I don't know if this is the best way)) continuing.. I want to check the files from desktop to know if a file has been added or edited and my main point is to get the path of the edited file (if anyone can give me an idea on how to do this I would be very grateful (remembering that I don't know if fileSystemWatcher is the best way to check that)
53 replies
CC#
Created by Luizdodibre on 10/2/2022 in #help
?.Show() Is not working [Closed]
I'm creating my "antivirus" but when I put it to display the new form with .Show it doesn't work the window doesn't appear how to solve?
24 replies
CC#
Created by Luizdodibre on 10/2/2022 in #help
How to block a website in csharp? [Closed] [Answered]
I'm creating an app and I want to block specific websites if possible maybe replace the blocked site with another one. (antivirus style)
14 replies
CC#
Created by Luizdodibre on 9/21/2022 in #help
lc.exe exited with code -1
I was creating my project with bunifu ui I went to uninstall the package from bunifu ui and now it keeps giving this error and I can't run the Smadge
10 replies
CC#
Created by Luizdodibre on 9/19/2022 in #help
[Repost] Process start
I want to know when ANY new process is started and I want to get the path of the file that ran the process (and the name of the process as well)
10 replies
CC#
Created by Luizdodibre on 9/19/2022 in #help
Process
I want to know when ANY new process is started and I want to get the path of the file that ran the process (and the name of the process as well)
1 replies
CC#
Created by Luizdodibre on 9/15/2022 in #help
fileSystemWatcher
I'm using fileSystemWatcher to check when a file is edited but every time I edit a file it opens ScanResult window more than 7 times Code:
private void fileSystemWatcher1_Changed(object sender, FileSystemEventArgs e)
{

var scR = new ScanResult();
scR.Show();
}
private void fileSystemWatcher1_Changed(object sender, FileSystemEventArgs e)
{

var scR = new ScanResult();
scR.Show();
}
3 replies
CC#
Created by Luizdodibre on 9/12/2022 in #help
❔ How can I tell if an app has been opened?
remembering that I use c# and win forms for design and finally i use net framework 4.7
8 replies
CC#
Created by Luizdodibre on 9/12/2022 in #help
Is it possible to check moved or updated files in real time?
I want to know how to check in real time files that have been moved or updated and get their md5 hash is it possible? (in c#)
9 replies