| Thread | Last Post | Replies |
|
| Changing Route Table | 27 Nov 2006 22:57 GMT | 3 |
I've posted this question in 'microsoft.public.dotnet.framework.compactframework' as well, but despite the great help I still haven't solved the problem. So before going the C++ route I would like to see if anybody in this group may
|
| Add C code to my C# application? | 27 Nov 2006 22:33 GMT | 8 |
I'm developing for Windows Mobile 2005 PPC using Visual Studio 2005. I need to invoke methods on a DLL (Iphlpapi.dll) but I can't get this working from C# using p/invoke so I want to write some C code that invokes the DLL. Similar to this:
|
| VS 2005 Pro & Express on same box? | 27 Nov 2006 22:19 GMT | 3 |
Can C# Express be installed side-by-side with VS 2005 Pro (Developer Edition)? Or do they require installation on seperate machines? I'm trying to install XNA but it requires C# Express which I don't have because I use pro.
|
| static fields in class scope | 27 Nov 2006 22:13 GMT | 7 |
I have some static fields in a class to keep track of "global" information but this information is local to each form that the class is used on. e.g., the class represents a base control(inherited from System.Windows.Forms.Control) but keeps static information for all the
|
| loading a file to an array in 8 bit pieces | 27 Nov 2006 21:36 GMT | 1 |
I want to load a binary file in to an array by splitting the file in 8 bit pieces. I mean: FileStream s = new FileStream(path, FileMode.OpenOrCreate); // Open StreamReader r = new StreamReader(s);
|
| High Performance Xml parser | 27 Nov 2006 21:26 GMT | 3 |
I am looking for component which allows me to parse my xml file. the reason i am asking this, is because my xml files are huge it can reach as far as 1GB more or less. the time to parse such a file is something like 5 Hours.
|
| List<T> inheritance | 27 Nov 2006 21:06 GMT | 22 |
Hi all, I have a classic problem: List<T> and List<X> where X is a class X : T. Ok, I know the problem: I cannot cast List<T> on List<X> because also if X is a T, List<X> is not a List<T>.
|
| convert date to ticks | 27 Nov 2006 21:06 GMT | 1 |
How to convert a given date to its equvalent ticks.: string d="5/15/2006 12:10:44 PM"; // string 2 date ... dt=Convert.ToDateTime(d);
|
| Richtext control characters "@" | 27 Nov 2006 21:02 GMT | 2 |
When reading a number richtext strings back from a database c# adds the @ operator to the string, the effect being all the control characters are ignored and the string cannot be added to a richtextbox. I'm using a stored procedure to get the data and the data type is
|
| How-to find if we're in Debug or Release mode | 27 Nov 2006 20:47 GMT | 6 |
Is there a way to find out in which mode we are? What can I write instead of "ItIsDebugMode" in this condition? if (ItIsDebugMode) {
|
| .Net /4GT | 27 Nov 2006 19:19 GMT | 3 |
Hi. Does anyone know how to set the IMAGE_FILE_LARGE_ADDRESS_AWARE bit for C# apps? It appears that the link switch /LARGEADDRESSAWARE will do it for C++ apps, but I can't seem to find anything for C#. I want to enable /4GT on a w2k3 server with 8GB Ram, so that one process ...
|
| How to delete a generated web part? | 27 Nov 2006 19:01 GMT | 1 |
I have generated (programmatically) a web part for my site. It was created at user-login when the user had permissions to view the web-part control, but the control wasn't already a part of their viewable list.
|
| rss feed reader code | 27 Nov 2006 18:22 GMT | 4 |
Does anyone know where I can get an open source rss feed reader?
|
| OO Aggregation! | 27 Nov 2006 18:03 GMT | 6 |
Can OO Aggregation be described as: - A system of objects that are built using each other any comments? Jeff
|
| Voice recording | 27 Nov 2006 17:47 GMT | 1 |
What is the best (or simple!) way to make some voice recording in C# ? Thanks.
|