This text is replaced by the Flash movie.

Posts Tagged ‘Desktop Application’

Desktop Application Icon

March 4th, 2010

, On Solution Explorer. Right Click. Choose Properties. Select Application, Look for Resources/ and Manifest,

Project Settings Visual Studio.net

Browse for you want for the release build.

Application With Custom Icon

System.NullReferenceException

August 23rd, 2009

While trying Telerik component, I got this error System.NullReferenceException - Object reference not set to an instance of an object, I struggle how to find causing this error, And somehow the solution was


From:


ddbImages.Image = ((Image)item.Tag).GetThumbnailImage(20, 20, null, new IntPtr());
ddbImages.Text = item.Text;

To:


if (item != null)
  {
    ddbImages.Image = ((Image)item.Tag).GetThumbnailImage(20, 20, null, new IntPtr());
    ddbImages.Text = item.Text;
  }