blah blah blah is here! blah blah » Close

0
votes
0 answers

Monitoring all Http connections

Hi, i want to build a program which monitors all the computers http connections for my school project(C#). Ive been looking the web for such program and found this: [code] protected void Page_Load(object sender, EventArgs e) { ...

0
votes
0 answers

Simple program to communicate to a server (wifi router)

Hi, I'm still new at C#. I wish to write a simple program so as to communicate to my router (WRT54GL running on openwrt) which is connected to a remote control car. I wish it to be like a key logger (but synchronous) , to send anything i p ...

0
votes
1 answers

Connecting to Exchange in C#

When I try to connect to Exchange using webdav with my domain credentials manually, it works fine: [code] NetworkCredential credential = new NetworkCredential("user", "pass","dom"); WebdavSession session = ...

0
votes
4 answers

C# Network Printing

I am able to get the list of network printers via this code: private void Form1_Load(object sender, EventArgs e) { foreach (String printer in PrinterSettings.InstalledPrinters) { li ...

0
votes
1 answers

Check network status

Guys, is it possible to check if a network connection has been established then if so perform a function? Something like below (which doesn't work) but i want to check if the local network exists not the internet. [code][DllImport(" ...

0
votes
0 answers

Windows app to do Network admin tasks

I need some help to get started with a project. I have been charged with the task of writing a windows app that can do a couple of things... 1) Query the network to give the user a list of users that are logged on to the various machines i ...

Feedback