| Thread | Last Post | Replies |
|
| gc : gen 0,1,2 heaps, loh | 25 Jun 2007 14:09 GMT | 2 |
Are Gen 0, Gen 1, Gen 2 heaps and Large Object Heaps physically contiguous ? Or are these abstract representations of groups of allocated segments in the general heap ? More specifically, are the segments physically contiguous within each heap ? And are the heaps physically ...
|
| Using C++ static library in managed code | 25 Jun 2007 14:05 GMT | 1 |
Does anyone know whether or not we can link a static library to a .NET project and use the classes defined in the library? The static library is built from C++ code base. Thanks,
|
| Does LINQ work in Orcas? | 25 Jun 2007 14:00 GMT | 8 |
I've installed Orcas beta1 March 2007 CTP. I get compiler errors on any LINQ related code. For example: List<string> cities = new List<string>(); cities.Add("London");
|
| Web Query String | 25 Jun 2007 13:58 GMT | 3 |
I'm trying to replicate a request to a web browser request (actual domain is changed :D) http://www.philip.com/phils.cfm?num_ent=%25%22%24%5B%5F%23%3DH%20%0A So far I can post to the above address, but I can't reverse engineer
|
| a case for multiple inheritance | 25 Jun 2007 13:56 GMT | 11 |
Although C# has Generics, it still does not support the generic programming paradigm. Multiple inheritance is required to support real generic programming. Here is a simple design pattern to illustrate this. Problem:
|
| Center a Label in a form/panel | 25 Jun 2007 12:25 GMT | 2 |
Is there any easy way of centering a label in a form or panel? I can dock, and anchor but not get my label to stay centered, short of resorting to playing with the top and left properties of the label each time the form is resized or the label changed.
|
| unable to hit breakpoint when remote debugging(ASP.NET) | 25 Jun 2007 11:18 GMT | 1 |
Hello... After a very huge dig in web looking after how to set up remote debugging, I was able to attach to aspnet_wp.exe of remote machine. The details how I did that,
|
| Getting data from another website dynamically | 25 Jun 2007 11:00 GMT | 7 |
Theres a website that books hotels . user enters the information and according to that results are displayed to the user.Let it be website A. Now I want to create a new project with designing page same as in
|
| KeyUp events | 25 Jun 2007 10:43 GMT | 11 |
I'm trying to catch the pressing of the left and right arrow keys through the KeyUp event, like so: public Form1() {
|
| Namespace for ProductsTableAdapter (from DAL) not found | 25 Jun 2007 10:43 GMT | 1 |
I am getting the very well known error: CS0246: The type or namespace name 'ProductsTableAdapter' could not be found (are you missing a using directive or an assembly reference?) Although I have followed the tutorial at MSDN (http://
|
| Saving a number with high preciosion in a ADO.NET table | 25 Jun 2007 10:04 GMT | 9 |
I save a number in the table and want to get that number again, but the number I get has lower precision than I expect. For example, when I divide 10/3 I get 3.3333333333333335 if the variable is of type Double. But saving this result into a table with a column of type Double ...
|
| new c# student | 25 Jun 2007 08:40 GMT | 1 |
I am a new student of c# (I have just finished Java 1 and have quite a bit of experiance in HTML, DHTML, XHTML and CSS) and would like to know of some good supplemental textbooks or reference books to help with my studies. Keep in mind that I am taking 100% internet courses, ...
|
| IsolationLevel meaning | 25 Jun 2007 05:18 GMT | 2 |
I have a trivial question: What does IsolationLevel mean? e.g., in SDK: ReadCommitted
|
| ReadCommitted | 25 Jun 2007 05:07 GMT | 1 |
For IsolationLevel.ReadCommitted, here "Committed" does not mean trans.Commit(), it just means db has been updated. -- Is this right? It means other thread/connection can read "my" data before I finish a transaction.
|
| Display Linked-List in a DataGridView? | 25 Jun 2007 05:00 GMT | 1 |
How do I set a linked-list as a data source for a DataGridView control? Should the linked list be a member on a form or its own global class (or doesn't matter...???) Right now when I set the list as the data source, the only columns I get are Count, First, and Last. I want ...
|