| Thread | Last Post | Replies |
|
| VS Icons | 22 Mar 2008 12:42 GMT | 1 |
Where can I find a list of the Icons VS2005 uses in the IDE? I'd like to print a copy for reference. Thanks Mike
|
| Implementing Linq IENumerable<T> without new() constraint | 22 Mar 2008 11:15 GMT | 1 |
I noticed that Linq-SQL DataContext ExecuteQuery method does not have new() constraint: IEnumerable<TResult> ExecuteQuery( command, ... ) IEnumerable must return object so it must create this object in some way.
|
| A simple class library question | 22 Mar 2008 11:03 GMT | 6 |
Well - at least I hope it is :-) Having spent some time developing my c# application, using Visual Studio 2005, I would now like to start re-factoring some of my code into a class library so that I can use it in other applications I will
|
| Managing TODOs in your source code | 22 Mar 2008 09:37 GMT | 8 |
In my code I have TODOs all over the solution/projects (like the following) //TODO: Refactor to Factory Pattern _service = new ServiceStub();
|
| Resource file question! | 22 Mar 2008 02:16 GMT | 7 |
I am using VS2008 C#3.0 and I would like to know if some one can help me wiith the following 2 questions; 1. I have a XML file called test.xml file in resource and I would like to how can I read the xml file wihtout extracting it to a external
|
| Serious "Installer" class bug (?) | 22 Mar 2008 01:58 GMT | 3 |
I created an MSI deployment project and am using the "System.Configuration.Install.Installer" class to implement some custom actions at install time. In "Installer.Install()", I save some info in the ".InstallState" file which is routine for those familiar with this class.
|
| MenuStrip and ContextMenuStrip | 22 Mar 2008 00:38 GMT | 1 |
I have a System.Windows.Forms.MenuStrip with some ToolStripMenuItem. One of these ToolStripMenuItem is called saveMemberToolStripMenuItem. This one is defined like this this.saveMemberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
| Postback Question | 21 Mar 2008 23:10 GMT | 2 |
Question: Did the (!Postback) method change from VS2005 to VS 2008? I'm working in VS2008 and a tutporal DVD I am using, uses VS2005 This errors at the postback line in 2008 and not in 2005..why?? public partial class _Default : System.Web.UI.Page
|
| scalar function call | 21 Mar 2008 21:25 GMT | 3 |
hey all, is it possible to call a sql server scalar function from c#? thanks, rodchar
|
| Unselect a ListBox | 21 Mar 2008 20:29 GMT | 3 |
I have a ListBox on a form than has some items. The select mode is one item only. I select one, it is selected and hightlighted. I then click somewhere in the listbox not on any item, in the clear area of the listbox. I would like to unselect the selected item but I cannot
|
| Thread Debugging | 21 Mar 2008 20:02 GMT | 1 |
I don't have much experience with threads or debugging of those threads. I'm using VS 2005 pro. I'm getting a "TypeLoadException" error soon after I invoke a thread. It is identifying a Enum member is a class for which there is a "reference to".
|
| c# features | 21 Mar 2008 19:58 GMT | 14 |
I have to say I think that lambda functions are incredible. Although a little disconcerting at first I think they really unclutter code and are extremely powerful when you understand them. So here is my wish list for c#/cli features...
|
| Why does tsSource[j].Text.ToUpper() causes side effects | 21 Mar 2008 19:42 GMT | 18 |
I get the following watch message: tsSource[j].Text.ToUpper() This expression causes side effects and will not be evaluated string The Text is &Edit
|
| without loading VS2005 on user machine how to make app work? Dev | 21 Mar 2008 18:50 GMT | 2 |
On my development machine where I have Visual Studio 2005 loaded, I have an app that uses the Report control. I can view data in report format with the Report control -- the data renders OK in the Report control. My problem is in rendering the report from the rdlc file for ...
|
| C# 3.0 property setter question! | 21 Mar 2008 18:28 GMT | 3 |
I know you can now define something like the follwing public string Name{set; get;} during compiling it will create requested information along with the private varaible to work with. Here is my question; I have a class
|