| Thread | Last Post | Replies |
|
| Making a File System website run on IIS? | 01 Sep 2007 00:49 GMT | 1 |
After you create a website on the "File System" how do you get it to run on your IIS?
|
| Repairing Windows XP | 31 Aug 2007 21:49 GMT | 11 |
I got an extremely bad virus which fortunately I was able to get rid of. In the process I no longer have administrator rights and cannot access the control panel. How do I repair? and if I need to reinstall, will I lose the other programs and/or files on the computer?
|
| GetCharABCWidths or GetCharABCWidthsFloat analogs in .NET | 31 Aug 2007 18:05 GMT | 2 |
What methods of what classes I must use in .NET to get the info that GetCharABCWidthsFloat gives? Or what is a way to obtain char widths for the font in .NET ? Thanks in advance.
|
| Inconsistent derivation for generic collections | 31 Aug 2007 17:59 GMT | 20 |
Looking at List<T> and LinkedList<T>, we have: public class List<T> : IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable public class LinkedList<T> : ICollection<T>, IEnumerable<T>,
|
| Casting when using reflection | 31 Aug 2007 12:06 GMT | 2 |
I am writing a method that kind of works like the default implmentation of the serializing logic when using the Serializable attribute. I have a base "serializer" that is using reflection to determine what properties to serialize out. When I am deserializing I know the name of ...
|
| catching exceptions | 31 Aug 2007 10:51 GMT | 4 |
In many asp.net pages I want to trap for errors, but I often really dont do anything with the exception object itself, so I get annorying warning messages when it comes time to build. So i started changing how i catch exceptions like so:
|
| Time.Zone.GetDaylightChanges(2007) returning incorrect dates | 31 Aug 2007 07:05 GMT | 1 |
Time.Zone.GetDaylightChanges(2007) returns 4 (April) and 10 (October) for DST begin and end dates. That is incorrect. It should be 3 and 11. My registry is correctly updated for the 2007 rules (the TZI structure for my time zone has 3 and 11).
|
| Oracle Client Error OCI-22053 Overflow Error | 31 Aug 2007 05:30 GMT | 5 |
I have a query against a database that continues to crash my app with an Oracle CLient Error OCI-22053 Overflow Error. The query is: SELECT pt.adjusted_delivered_qty, pt.expected,
|
| Use delegate or control click event? | 31 Aug 2007 04:49 GMT | 1 |
Since it seems you can do just about anything by clicking a control and executing that click event, under what conditions do you need to create a delegate?
|
| WPF TabControl - Hiding tab buttons conditionally | 30 Aug 2007 19:04 GMT | 3 |
In my application users generally only have one tab page and I'd like to hide the tab page buttons (headers?) when this is the case. I have not been able to find a way to do this. Do I need to re-apply an entire template to the tab control to have a handle into the appropriate
|
| TransactionScope question | 30 Aug 2007 17:08 GMT | 3 |
I'm building an application that performs some operations of several kinds : file copy, IIS web site creation, etc... Since if one of this operation fails, all others have to be rollbacked, I started to look at the transactionscope class and IEnlistmentNotification
|
| Error in Microsoft's J# implementation? | 30 Aug 2007 15:32 GMT | 1 |
I copied some code from a C#.NET program into a J#.Net program: StreamWriter sw = new StreamWriter(ThisFile); sw.Write(msg); sw.Write(sw.NewLine);
|
| substituting a framework method | 30 Aug 2007 14:23 GMT | 5 |
I need to substitute a method of a Framework built-in class with my own. Please suggest a way how I can do this (without having to copy/ paste whole source of a particular assembly). Reflection, probably?
|
| B-Tree implementation | 30 Aug 2007 12:41 GMT | 7 |
I have a need to manage a rather large set of indexed objects. Currently I'm doing this in memory with a Dictionary<> and persisting to a text file, but it has an unpleasant habit of using very large amounts of memory (several GB). So I would like to offload these objects onto ...
|
| FileNotFoundException when loading a dll I think is really there | 30 Aug 2007 09:35 GMT | 3 |
I've just converted a C# app (see my Visual Studio information below) to a 3D API (OSG) using the OsgDotNet C# to C++ wrappers. When I tried to run it the first time I got a FileNotFoundException (see below). The exception is thrown in main when it tries to create the first ...
|