Skip to content

zhc341272/HCVNC

Repository files navigation

HCVNC

A vnc client dll for c#, written in c/c++ and c#, depends on TightVnc 2.7.10, so it can use Tight to push screen faster than vncsharp use less wifi.
It contains a core dll:HCVncCore.dll, a common dll:HCVNC.dll.
One thing you need to know that 1.0.0 can only to show screen, can not control or send any file.
Email:390088762@qq.com

How To Use

Those dlls depend on .Net 4.0, so you can use them on XP.

You can download dlls at:
2016-09-09 1.0.0 Click to download secret:8467

Use HCVncCore.dll and HCVNC.dll

1.You can import HCVNC.dll to your project and push HCVncCore.dll to your EXE folder(debug or release).
2.You can find ScreenBox(a UserControl) in your project, you can use it!
3.Use these codes to push screen:

        public Form1()
        {
            InitializeComponent();

            screenBox1.PrepareToStart();
            screenBox1.ScreenState += RemoteScreen_ScreenState;
        }
        
        private void RemoteScreen_ScreenState(string code)
        {
            switch (code)
            {
                case "success"://connect
                    break;
                case "close":
                    break;
                case "error":
                    break;
                default:
                    break;
            }
        }
        
        private void button1_Click(object sender, EventArgs e)
        {
            if (screenBox1.InvokeRequired)
            {
                screenBox1.BeginInvoke(new MethodInvoker(delegate
                {
                    screenBox1.StartPushScreen(textBox1.Text);
                }));
            }
            else
            {
                screenBox1.StartPushScreen(textBox1.Text);
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            if (screenBox1.InvokeRequired)
            {
                screenBox1.BeginInvoke(new MethodInvoker(delegate
                {
                    screenBox1.CloseScreen();
                }));
            }
            else
            {
                screenBox1.CloseScreen();
            }
        }

You can find these in DEMO project.

About

A vnc client dll for c#, written in c/c++ and c#, depends on TightVnc 2.7.10, so it can use Tight to push screen faster than vncsharp use less wifi.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages