How to Create a RemoteControl - Part 2 WEB DESIGN VIDEOS - PHOTO EDITING VIDEO CLIPS

Tutorial #01 - How to create a Remote Control.This tutorial will explain how to create a RemoteControl with Winsock under Visual Basic 6. The second part walks trough the server and testing of our simple RemoteControl.\n\nOf course you can extend the RemoteControl, with some simple shell commands. :)\n\nDue to Video Compression of YouTube, this video is in bad quality. You\'ll find parts 1&2 together, in good quality (FullScreen), at: http://www.megaupload.com/?d=H74RSGU5 (50 MB)My Apologies for the strange english, and this quality in YouTube.\n\nFireFoxyNL\n\nVideo in better quality: http://www.youtube.com/watch?v=BhwMC0d6rvs&fmt=18Edit: Some of you guys didn\'t understand so here\'s the source code for the server:\n\nPrivate Sub Form_Load()\nsock.Protocol = sckTCPProtocol\nsock.LocalPort = 1000\nsock.Listen\nEnd Sub\n\nPrivate Sub sock_close()\nsock.Close\nsock.Listen\nEnd Sub\n\nPrivate Sub sock_ConnectionRequest(ByVal requestID As Long)If sock.State = sckListening Then\nsock.Close\nsock.Accept requestID\nEnd If\nEnd Sub\n\nPrivate Sub sock_DataArrival(ByVal bytesTotal As Long)\nDim Message As String\nCall sock.GetData(Message, vbString)\nIf Message = \"message\" Then\nreceived_message.Text = \"Received from: \"&sock.RemoteHostIPExit SubEnd IfEnd Sub

basic, control, create, how, part, remote, server, sock, to, tutorial, visual, win