13:05 ET Dow -154.48 at 10309.92, Nasdaq -37.61 at 2138.44, S&P -19.130 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 0 1 100001 0 1 0 1 1 0 1 0 00 0 1 1 1 0 1 100001 0 1 1 100001 13:05 ET Dow -154.48 at 10309.92, Nasdaq -37.61 at 2138.44, S&P -19.1313:05 ET Dow -154.48 at 10309.92, Nasdaq -37.61 at 2138.44, S&P -19.13

.

.

Friday, October 14, 2011

  string[] snake = SplitWords(txtSymbols.Text);

            if (snake[0] == "")
            {
                MessageBox.Show("You must enter a symbol in the 'Add Symbol to Grid' text box");
                return;
            }
            string schlong = "";
            foreach (string s in snake)
            {
                schlong = schlong + s;
            }
            MessageBox.Show(schlong);


            StartStop = false;
            string dng = "worked";
            injection(dng);


            //string schlong = listView1.Items[1].Text;
            //UpdateText("fuck");
            //listView1.Items[1].Text = "dong";
            //listView1.Items[1].Text = "dong";
            //MessageBox.Show(schlong);
            //StockData s = ticker.AddStock(command.Text);
            //s.AddObserver(this);
            //string strSymbol = s.Symbol;
            //string strBid = Convert.ToString(s.Summary.Bid);
            //string strAsk = Convert.ToString(s.Summary.Ask);
            //string strLast = Convert.ToString(s.Summary.LastPrice);
            //string strVolume = Convert.ToString(s.Summary.Volume);
            //string strTrades = Convert.ToString(s.Summary.Trades);
            //txtSymbol.Text = strSymbol;
            //txtBid.Text = strBid;
            //txtAsk.Text = strAsk;
            //txtLast.Text = strLast;
            //txtVolume.Text = strVolume;
            //txtTrades.Text = strTrades;

            //dataGridView1.Rows.Insert(0, strSymbol, strBid, strAsk, strLast, strVolume, strTrades);

        }

        static string[] SplitWords(string s)
        {
            return Regex.Split(s, @"\W+");
        }

        private void ThreadProcSafe()
        {