| Thread | Last Post | Replies |
|
| new keyword scope | 30 Mar 2008 12:43 GMT | 7 |
In C++ when you create an object using the "new" keyword you usually use the "delete" keyword to end it's scope. In C# I don't find the "delete" keyword. How do you handle the scope of an object you create with "new"??? Thanks, Neil
|
| Dedect pending changes in DLinq DataContext | 30 Mar 2008 11:09 GMT | 1 |
I have invoice editing WinForms form containing TextBox controls and DataGridView. Text boxes are bound to entity properties, grid is bound to BindingList of entities.
|
| creating ExecuteQuery method | 30 Mar 2008 10:19 GMT | 34 |
I need to create ExecuteQuery() method with signature: System.Collections.Generic.IEnumerable<TEntityt> ExecuteQuery<TEntity>(string selectCommand) selectCommand is sql SELECT statement like "SELECT Name, Id, City FROM
|
| Location of Context Menu in Listview | 30 Mar 2008 09:07 GMT | 5 |
Assume a context menu is associated with a listview. Upon opening the context menu, is there a way to determine which row in the listview that the context menu was invoked upon?
|
| embedded DB | 30 Mar 2008 03:16 GMT | 6 |
(cutnpaste from http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=3027050&SiteID=1) No one seems to ever use these forums! I started migrating from C++ and want to use C# with an embedded database in
|
| Do we need constructors in an inheriting class? | 30 Mar 2008 01:03 GMT | 4 |
I have: abstract class Vehicle { public Vehicle (int i) {...}
|
| How can I exit a method prematurely | 29 Mar 2008 23:29 GMT | 7 |
I've implemented a windows service that calls an SSIS package. Every so often, the SSIS package does not return control to the calling method. What I've implemented is a sentinel thread that is spawned before the execute method of the SSIS package which will email me if
|
| Make a web service method return a class | 29 Mar 2008 20:23 GMT | 2 |
How do I make a web method to return an object class MyClass, also how do I make it to return List<MyClass>? TIA
|
| Custom Serialization | 29 Mar 2008 19:44 GMT | 2 |
I have a recursive class that looks like [Serializable] public class RTree<T> : IEnumerable<RTree<T>>, ISerializable {
|
| Share memory between two .net application | 29 Mar 2008 18:58 GMT | 3 |
How can i share a common memory between two .net programs. Can it be possible. Kindly help me. Thanks
|
| Declaring DateTime variables and comparing them | 29 Mar 2008 18:51 GMT | 3 |
I am using the followig code: SqlConnection con = new SqlConnection(strcon); con.Open(); string strSelect = "Select PaidUntil from Users where username='" + un +
|
| DLLImport memory leaks? | 29 Mar 2008 17:05 GMT | 2 |
.NET 1.1 I have a long running program that runs various methods from system DLL's. I've pasted some calls below. My program is leaking memory. Could the leak be due to these calls, or am I
|
| How to compute age | 29 Mar 2008 16:38 GMT | 8 |
How to compute the age of a person? For example, a person with birthday of 1964/09/25. How to compute his age with c#?
|
| Method/Function name | 29 Mar 2008 14:21 GMT | 3 |
How do I output the name of the method or a function without hard-coding it in the application? Say, I want application to write to stdout the name of the method that currently is getting executed, to give me better idea how the program logic
|
| [off-topic] If I was as dumb as a | 29 Mar 2008 13:41 GMT | 5 |
cat, I wouldn't be worried about linq nor IDisposable. http://www.youtube.com/watch?v=MQ4vmSvCVbc Enjoy, and if you hate silly cats, at least the music is great! =) - Michael Starberg
|