This text is replaced by the Flash movie.

Archive for May, 2010

NFS Carbon

May 29th, 2010


Watch it over youtube 480p

Anime Vector Study

May 26th, 2010
Testing Wacom

Anime Study Vector

Draw Muhammad Day

May 19th, 2010

Draw Muhammad Day

Muhammad Loves to be drawn :)

Subarashiii.

May 8th, 2010
Japanese Digital Teen Artists


作者:中西 倫子/nakanishi NORIKO

Thanks to Tomo-san letting me know that the music was done by SuperCar(スーパーカー, Sūpākā), The combination of music and the short movie is simply awesome - more at http://www.nhk.or.jp/digista/

Remove number of words…

May 1st, 2010
Remove number of words at the beginning of string?

Looking for a function that you want to make string only return the last words within the strings? and remove number of words at the beginning Using C#


Windows Form Remove words

This function could help you:
        /// <summary>
        /// Return only last several words  and remove the number of words at the beginning from string.
        /// </summary>
        public static string RemoveFirstWords(string input, int numberWords)
        {
            try
            {
                string[] Split = input.Split(new Char[] { ' ' });
                input = string.Empty; //After passing the words to Split - Empty in again
                for (int i = numberWords; i < Split.Count(); i++)
                {
                    input += Convert.ToString(Split[i]) + " "; //Get Only the last words
                }
                return input;
            }
            catch (Exception)
            {
                // Log the error.
            }
            return string.Empty;
        }
Use the function like this:
private void removeWords_Click(object sender, EventArgs e)
        {
            if (stringToRemove.Text == string.Empty)
            {
                MessageBox.Show("The String is Empty");
            }
            else
            {
                int paramNumOfWords = Convert.ToInt16(numOfwords.Text);
                string returnOnlyLastWords = RemoveFirstWords(stringToRemove.Text.ToString(), paramNumOfWords);
 
                //Return Words
                MessageBox.Show("Return Words: " + returnOnlyLastWords);
            }
        }

Download Source code MVS version 9 C#