Just as a tip, it's usually not a good idea to use exception for handling normal behaviors in the code (like finding the end of file). An exception is supposed to be exceptional. Would be better this...
For having used both extensively, I would suggest without any doubt QT. It's not just a library with widgets but also contains tons of other stuff. IMO, you would get what you want way faster with...
I think you should start doing some tutorial using Blend and Silverlight for writing web services in C#. After that, you only need to connect your web services and the interface (from Dreamweaver)...
The solution of HanneSThEGreaT is really nice and easy, but it's not robust since it's base on string that can easily change in the designer. Probably using the "tabPageObject.Name" property could be...
Not really, a property is exactly like a method. The advantage is if you change the internal object, the properties and methods signature doesn't need to change. Usually property and memver variable...
Hahaha, looks like posting made me thought about the problem. I'm under XNA and I'm making an editor. I just remember I had to put the attribute STAThread. So, after comparing the 2 program.cs, I...
I've come across a really weird problem. I was trying to see the groups in my application, but it didn't seems to work at run-time. So, I stated to develop my control in a test application....
Arjay gave the proper answer, but I would suggest you to look at the DataGridView. You can make a log window similar to visual studio (like the Error List). By using a BindingList with the DataSource...
I've come across a weird problem. I've tried a lot of possibilities and still doesn't have the result I want. So, to make it simple, I've got 3 values I want to bind together using...
Looks like I made a mistake with my search, and I didn't have the reference "System.Drawing.Design". But after trying your idea, it doesn't change anything to the problem. I've also tried to inherit...
ColorEditor doesn't exist. I've did some seach, but it seems that only TypeConverter exist for the type Color. And if we read the doc about the ctor of the EditorAttribute:
It depends on how you load your data. If you have no control, doing what Shuja Ali is a good option. On the other hand, if you have more control (or can refactor it), you could just add a variable...
If you want really fast access, without doing IO operation all the time (like you do in your solution), I would suggest that you parse only your file once and put it in a dictionary or a similar...
I'm trying to abstract the name of the property. The reason is that if a certain attribute is defined for this property, I want to use it. Also, I don't want people to use "strings" when creating a...
I was wondering is it was possible to get the PropertyInfo directly from the code? What I mean is that I don't want to have a string base method call. To be clearer, I will show an example...
Never mind, After writing this post it gives me an idea to test. I found out by testing that you can add the suffix "Attribute" and it will automaticly bind it...
Ok, I found out that the problem occurs when I was tracing only. It seems that when the throw was trying to jump, instead of going directly to the next catch, it was going in that weird callstack.