Click here to Skip to main content
15,897,718 members
Articles / Programming Languages / C#

Internet Magic (Proxy Server) Windows Application

Rate me:
Please Sign up or sign in to vote.
3.00/5 (8 votes)
10 Apr 2010CPOL3 min read 68.7K   8.8K   38  
Windows application which creates a proxy server to share Internet over any TCP/IP network
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.IO;
using System.Windows.Forms;

namespace internet_magic
{
    public partial class clnt_log : Form
    {
        public clnt_log()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        { 
            string dir = Environment.CurrentDirectory;
             if (!dir.Substring(dir.Length - 1, 1).Equals(@"\"))
                 dir += @"\";
             try
             {
                 FileStream file = new FileStream(dir + "clientlog.txt", FileMode.Open, FileAccess.Read);
                 StreamReader sr = new StreamReader(file);
                 this.clnt.Text = sr.ReadToEnd();
                 sr.Close();
                 file.Close();
             }
             catch
             {
                 MessageBox.Show("File access denied.Check you security settings.", "", MessageBoxButtons.OK, MessageBoxIcon.Error);
             }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            string dir = Environment.CurrentDirectory;
            if (!dir.Substring(dir.Length - 1, 1).Equals(@"\"))
                dir += @"\";
            try
            {
                FileStream file = new FileStream(dir + "clientlog.txt", FileMode.Create);
                file.Close();
            }
            catch
            {
                MessageBox.Show("File access denied.Check you security settings.", "", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }

        private void clnt_log_Load(object sender, EventArgs e)
        {
            string dir = Environment.CurrentDirectory;
            if (!dir.Substring(dir.Length - 1, 1).Equals(@"\"))
                dir += @"\";
            try
            {
                FileStream file = new FileStream(dir + "clientlog.txt", FileMode.Open, FileAccess.Read);
                StreamReader sr = new StreamReader(file);
                this.clnt.Text = sr.ReadToEnd();
                sr.Close();
                file.Close();
            }
            catch
            {
                MessageBox.Show("File access denied.Check you security settings.", "", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }

        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions