No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
if you are on windows xp, then you are being hit by conficker worm. download the patch from the following link for your os [Click Here](http://technet.microsoft.com/en-us/security/bulletin/ms08-067) xp sp3 does not have the patch built in. i'd recommend you to isolate each host from network, reinstall the os, apply the patch, …
it surely is a trojan on your system. Its hooking up the default browser to bypass the firewall. Get an av/is and scan your pc or boot into a live os and remove the unwanted startup apps from your offline system. Checkout autoruns from sysinternals. it can scan an offline …
you could use a foreach loop to clear all textboxes within a parent control. foreach(Control Control in Form1.Controls) { if(Control is textBox) { (Control as textBox).Clear(); } } If you group together the textbox in a panel/groupbox, pass in the parent control to the loop.
what size do you specify when initializing the byte[] ? it should be a simple for loop to iterate through the byte[] and writing it to a file .
if you are permitted to access the cameras, you can access them by the wan ip of the router to which the DVR is connected to. You would also need to forward the listening ports of the dvr. If you dont have a static ip @ your office, you need …
There are a number of system monitoring tools. You can visit nirsoft.net and download regmon to monitor the registry for changes. Also, check out sysinternals.com for similar tools.
how about creating a connection in the main form/control and pass the connection details to the constructor of another.
Hello geeks, this is my first post. ive gone through all the help in this forum but cant get this working. i will upload my project for you to help me. it contains a main form which calls a thread running on another class which runs a tcplistener. i want …
The End.
brite_a