Showing related tags and posts accross the entire site.
-
I have a class with following structure public class User { public string Username { get; set; } public Email Email { get { return this.email; } set { this.email = value; } } Email email; public User() { this.email = new Email(); } } public class Email { public string EmailId { get; set; } } How can...
-
Is there any problem in this class design? public class Users : List<users.user> { public class User { public int UserId { get; set; } public string UserName { get; set; } public string Password { get; set; } public string Email { get; set; } } }
-
Hi All In my Windows Form app. I am using a Custom objects Collection and Binds it to a DataGridView Control. I implemented the BindingList, for implementing the sort. Now the problem is it treats Numeric as well Text as Text Sorting. Means when I am sorting an Numeric column, it is sorting like 1,10...
-
Hi All I am planning to implement an Auto Suggest functionality in my application. It is in C# Windows Forms. I have done the POC using "AutoCompleteSource" property. But in real environment I want to use my custom object collection instead of simple string. I am using custom business objects...
-
Hi All In my application, I am displaying a MessageBox with Help button. I want Open up a HTML File, Web or display another MessageBox on clicking on the Help button. How Can I do this? I am working on WinForms and .Net 3.5. Please help.
-
Hello Subin, Did you check the windows forms control gallery? http://windowsclient.net/downloads/folders/controlgallery/tags/Windows+Forms+Graphing/default.aspx