very good, any support for vs 2012 or any other free tool that supports?
Tim Toady Bicarbonate
very good, any support for vs 2012 or any other free tool that supports?
Tim Toady Bicarbonate
Do you want to disable all comboboxes except current?
Tim Toady Bicarbonate
Stop reposting your question
Tim Toady Bicarbonate
Look at this thread http://stackoverflow.com/questions/2808887/create-thumbnail-image[^]
Tim Toady Bicarbonate
Ah okay
Tim Toady Bicarbonate
No no it is not, but sometimes I wish. I prefer using a simple calculator most time
Tim Toady Bicarbonate
Really good
Tim Toady Bicarbonate
Seems like string is a special child for microsoft
Tim Toady Bicarbonate
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
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
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
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