Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Sibugathulla

@Sibugathulla
About
Posts
3
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to handle null values when reading array
    S Sibugathulla

    Please Don't Worry You can Solve NullException problem Using one of the two methods :) . 1) If you create Your own Array Please Initalize it.

    List<String> strArray= new List<String>();
    strArray.Add("Code Project");

    Here new List<String>(); is important

    1. If you get the list from any where else You can check for null as follows

    if(strArray != null)
    if(strArray.Count >0)
    MessageBox.Show(strArray[0]);

    SibGeth

    Something Different™

    www.SibGeth.net

    C# question data-structures tutorial

  • Error in declaring a bitmap as the .image of a picture box
    S Sibugathulla

    Please Update your first line as follows :mad:

    Bitmap refImage = new Bitmap((Bitmap)freezeFrame.Image);

    Or Convert Image to Bitmap and use this Bitmap as parameter.

    ©Something Different

    C# graphics help question

  • Implementing WPF in a Visual C# project........ is it possible?
    S Sibugathulla

    Ofcourse You can do it :) . But If you are started your project as .net WinForm, you can only add WPF ascustome controls :| . To do this using VS2008, First of all you have to create a WPF Custom control by adding new items and select WPF control. A WPF Disigner will appear. Draw on designer as you want:cool:. Then Build the solution. Now we have to add this control to our form. So Drag a WPF contaner from toolbox and Drop on the Form. A control with unpredictable color will show. then using smart tag or properties box, we can add our former WPF control to it:thumbsup:. Please not that the above specified thing only work on Visual Studio 2008. For VS2005 you have todownload seperate pack for it :sigh: .

    ©Something Different

    C# csharp help question database visual-studio
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups