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
E

Emre Ataseven

@Emre Ataseven
About
Posts
12
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Free UML Modeling Tool ...
    E Emre Ataseven

    very good, any support for vs 2012 or any other free tool that supports?

    Tim Toady Bicarbonate

    Free Tools com tools

  • disable combobox in c#
    E Emre Ataseven

    Do you want to disable all comboboxes except current?

    Tim Toady Bicarbonate

    C# csharp tutorial

  • how can i resize my picturebox image with less pixels?
    E Emre Ataseven

    Stop reposting your question

    Tim Toady Bicarbonate

    C# csharp question css help

  • Resizing a Picture
    E Emre Ataseven

    Look at this thread http://stackoverflow.com/questions/2808887/create-thumbnail-image[^]

    Tim Toady Bicarbonate

    C# question

  • photographers montreal
    E Emre Ataseven

    Ah okay

    Tim Toady Bicarbonate

    The Lounge com

  • Is Microsoft Navision dead?
    E Emre Ataseven

    No no it is not, but sometimes I wish. I prefer using a simple calculator most time

    Tim Toady Bicarbonate

    C# question business

  • photographers montreal
    E Emre Ataseven

    Really good

    Tim Toady Bicarbonate

    The Lounge com

  • Rubs the fur the wrong way
    E Emre Ataseven

    Seems like string is a special child for microsoft

    Tim Toady Bicarbonate

    The Lounge question com discussion

  • Reach usercontrol's child control's methods
    E Emre Ataseven

    If you want to access events of listbox in usercontrol without extra effort, not possible. If you want to access properties of listbox, create a property in Userclass.

    public ListBox listBox
    {
    get { return listBox1; }
    }

    and you need to define all required events;

    public event EventHandler ListBoxClick
    {
    add { listBox1.Click += value; }
    remove { listBox1.Click -= value; }
    }

    Tim Toady Bicarbonate

    C# question

  • Editing values in List?
    E Emre Ataseven

    Change your fields to auto-properties like that;

    public string Name { get; set; }
    public string Artist{ get; set; }
    public string Album { get; set; }

    Tim Toady Bicarbonate

    C# help question

  • Search and Retrieving String
    E Emre Ataseven

    First get all matches between @ and /@ tags, then write a method which takes a single block and returns UserID (you can do it by indexof and substring methods) then iterate all matches and take appropriate ids. So;

    MatchCollection matchList = Regex.Matches(yourInput, yourPattern);
    var list = matchList.Cast<Match>().Select(match => match.Value).ToList();

    //Filter list
    var result = list.Where(p=> GetUserID(p) == "XXXXX").ToList();

    private string GetUserID(string singleBlock)
    {
    Extract user id and return it;
    }

    Tim Toady Bicarbonate

    C# tutorial question

  • I want to learn how to make in C# only Stock bar chart
    E Emre Ataseven

    I'm using Devexpress Charts for this purpose. It's not free for commercial applications. http://demos.devexpress.com/xtrachartsdemos/AdvancedViewTypes/StockSeries.aspx[^]

    Tim Toady Bicarbonate

    C# tutorial csharp
  • Login

  • Don't have an account? Register

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