| Thread | Last Post | Replies |
|
| graphical overview | 14 Jan 2005 21:40 GMT | 1 |
are there graphic,printable documents that put togoether the global hirerarchy of the .net framework? Ilann
|
| ObjectDisposedException and setting dispose object to nothing | 14 Jan 2005 18:39 GMT | 5 |
1) How necessary is it to throw the ObjectDisposedException? I see that most implementations I've come across in the web do not do this? Will I overkill my class if I throw the ObjectDisposedException in all of my public methods? Public Sub DoSomething()
|
| .NET console application fails lanching it from a COM application | 14 Jan 2005 17:47 GMT | 4 |
I developed a simple console app performing some optimizations and call to DTS packages. When I run the app from console or from Visual Studio everything is OK. When I call the program from a VB6 app, DTS fail with access denied or sql server
|
| Setup project's Registry Editor ... Directory shell command? | 14 Jan 2005 17:27 GMT | 2 |
I need to register MyEXE as described bellow: [HKEY_CLASSES_ROOT\Directory\shell\MyAppCommand\Command] @="C:\Program Files\UserChosePath\MyEXE.exe %1" What variable shall I use in the Setup project's Registry Editor
|
| object reference not set on Request obj in session_start? | 14 Jan 2005 15:57 GMT | 1 |
Seemingly randomly our web servers blow up and return nothing but this error, always when trying to access the request object in session_start. We have made sure to always refence it as context.request, but that has not fixed the issue. The only way to get the servers back up ...
|
| CF: How do I create a .jpg file from a .bmp file or bitmap? | 14 Jan 2005 14:27 GMT | 1 |
I'm working on a project using the .NET Compact Framework which doesn't support saving Bitmaps to files. I've successfully made a routine to save a bitmap to a .bmp file. But I'm now in need of a tool to save the bitmap or the .bmp file to .jpg format.
|
| Creating chm help files from xml documented code | 14 Jan 2005 13:49 GMT | 1 |
I've tried ndoc to create chm help files from the xml files produced by visual studio. It's pretty good, but I'm wondering is there other utilities, perhaps microsoft ones, that do the same thing?
|
| SoapTypeAttribute (System.Xml.Serialization) Example Code Fails | 14 Jan 2005 12:41 GMT | 2 |
[This is a repost, never got an answer the first time, 12/17/2004] This is for Microsoft .NET Framework 1.1. The example code given in the .NET Framework Class Library MSDN documentation for SoapTypeAttribute Class [C#] compiles but fails at runtime. Can someone
|
| parsing date string | 14 Jan 2005 11:39 GMT | 51 |
i have string in format dd/mm/yyyyy hh:mm:ss and giving this as an input to DateTime.Parse gives a string was not recognized as a valid date time format string error.
|
| Exception messages in localized application | 14 Jan 2005 08:06 GMT | 2 |
We've got a VB.NET application which is localized. I would like to make sure that any exceptions are logged to our application's log file in English, not the currently selected language. The problem is that by the time we get into the exception handling
|
| Unable to reuse remoting port | 14 Jan 2005 07:01 GMT | 1 |
I am registering an object for remote access in the constructor of a Windows Service using the following code: BinaryServerFormatterSinkProvider provider = new BinaryServerFormatterSinkProvider();
|
| useUnsafeHeaderParsing (KB 888527) | 14 Jan 2005 06:54 GMT | 1 |
Based on the information provided by http://support.microsoft.com/?kbid=KB888527 one should be able to add a useUnsafeHeaderParsing attribute to the <httpWebRequest> element in the Machine.config file on a .NET 1.0 SP3
|
| May I install the professional VB over the academic? | 14 Jan 2005 04:18 GMT | 4 |
I am planning to install the Professional VB .NET 1.1 over the Academic Visual Studio .NET 1.1 Will it work? MT
|
| Using reflection to cast an object - how? | 14 Jan 2005 02:05 GMT | 5 |
I have an application where... 1) I know the class name of the object I want to instantiate. 2) The class uses the class factory approach to create objects. 3) The factory method is a static member of the class. The name of this
|
| Determine Internet Connection | 14 Jan 2005 01:03 GMT | 3 |
This may be an obvious/stupid question, but I was unable to google an answer. How can I tell if an Internet connection is available? My app cannot count on a connection always being there and before I start a ftp or http request
|