Messages - jazper [ switch to compact view ]

Pages: [1] 2 3 4 5 6 ... 19next
1
Same thing happens on my system, but I'm using Win7.  What he's doing is trying to hit Shift+NumPadSub from an Explorer window and then he's getting the message:
---------------------------
HomeFolder
---------------------------
Could not determine Home Path of Active Window!
---------------------------
OK   
---------------------------


(But in spanish).  HomeFolder then closes. I tried running it as administrator as well.

2
General Software Discussion / Re: Google+
« on: June 29, 2011, 09:21 AM »
It pays to remember Google's primary goal is to deliver advertisements and ad related services. And collect data on usage patterns which they sell back to advertisers. 

This is no different than what Facebook does. 

3
General Software Discussion / Re: Google+
« on: June 29, 2011, 12:08 AM »
divorce lawyers mine your Facebook page to use it against you

My friend is a family attorney, he can confirm this...Facebook is a gold mine and a headache for lawyers.

As for Google+ , I like what I see and can't wait to give it a try.

4
Living Room / Re: Man vs. Mississippi
« on: May 20, 2011, 11:03 AM »
I immediately thought of Minecraft.....

5
I whipped this up real fast, it ain't pretty but should work


namespace SSDPTest
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            UdpClient ucs = new UdpClient(12555);

            string data = "M-SEARCH * HTTP/1.1\r\n" +
                            "HOST: 239.255.255.250:1900\r\n" +
                            "ST:upnp:rootdevice\r\n" +
                            "MAN:\"ssdp:discover\"\r\n" +
                            "MX:3\r\n\r\n";
           
            Byte[] sendBytes = Encoding.ASCII.GetBytes(data);
            ucs.Connect("255.255.255.255", 1900);
            ucs.Send(sendBytes, sendBytes.Length);
            ucs.Close();

            IPEndPoint RemoteIpEndPoint = new IPEndPoint(IPAddress.Any, 0);
            UdpClient ucr = new UdpClient(12555);


            Byte[] receiveBytes = ucr.Receive(ref RemoteIpEndPoint);

            textBox1.Text += Encoding.ASCII.GetString(receiveBytes);

            ucr.Close();

        }
    }
}

Pages: [1] 2 3 4 5 6 ... 19next
Go to full version