Sunday, April 17, 2011

Google OS - Chrome OS

Common google - Make a agreement with a motherboard manufacturer to make a bios that can boot directly to your Internet operating system (OS Chrome) - and you got me

Tuesday, January 5, 2010

WPF 3.5 SP1 and WPF 4.0

What you can do with WPF 3.5 SP1.



Look forward to WPF 4.0

C# Telnet

// Connect

TcpClient TCPC = new TcpClient("192.168.1.1", 23);
NStream = TCPC.GetStream();



// Send og modtag

S.Send(Encoding.ASCII.GetBytes(textBox1.Text+"\n"));

Byte[] ModtagetBytes = new Byte[500];
S.Receive(ModtagetBytes);
textBox2.Text = Encoding.ASCII.GetString(ModtagetBytes);