| Thread | Last Post | Replies |
|
| SetRop2 with GDI+ | 26 Oct 2006 12:22 GMT | 2 |
From what I can tell there is no equivalent in GDI+ to the SetRop2 API. Is this correct or have I missed something? I'm able to use GDI in some cases but not all. My rendering code only has access to a Graphics object and if this Graphics comes from a control or
|
| Framework 1.1 versus 2.0 | 26 Oct 2006 10:47 GMT | 2 |
Does anyone know where I could find a quick comparison between FrameWork 1.1 and 2.0 ? I have a component working on FW1.1 and tried to convert it to FW2.0. It seems to work but the exe crashes sometimes with
|
| Are Regex objects thread-safe? | 26 Oct 2006 08:46 GMT | 2 |
The MSDN documentation about the Regex class seems to have contradictory information. At the "Remarks" section, the documentation states: "The Regex class is immutable (read-only) and is inherently thread safe. Regex objects can be created on any thread and shared between threads. ...
|
| printersettings.installedprinters in asp.net not working for non-domain webserver with network printers on domain | 26 Oct 2006 03:27 GMT | 2 |
We have a .net web application, and are trying to use PrinterSettings.InstalledPrinters to list the printers installed on the webserver. (Windows 2003 server R2, IIS 6, .net framework 2.0.) The printers installed on the web server under the account used by asp.net
|
| Embedded Resource Name Specification | 26 Oct 2006 03:24 GMT | 4 |
SUMMARY: I want to override the default embedded resource naming convention and excercise complete control over the name of an embedded resource within an assembly. DETAIL: For non-dependent files, visual studio names a resource
|
| Secure data protection under .NET 1.1 | 26 Oct 2006 03:17 GMT | 1 |
I am attempting to find a way to store a chunk of data inside of a C#.NET application. I originally intended to use DPAPI via the Protect class in System.Security.Cryptography. However, one of the consumers of this application can only run the 1.1 framework and that class was ...
|
| Code Access Security Question | 26 Oct 2006 03:13 GMT | 1 |
I have a component dll that lives in the GAC. One of the classes in the component dll calls unmanaged code. I use the component dll from an ASP.NET application that I'm trying to get to run under medium trust. My call looks like this:
|
| VB script does not run | 26 Oct 2006 00:06 GMT | 1 |
I have added aVB script to check if subject is blank before email is sent. It does not work for my laptop .. it works on my oclleagues machine. What settings do I have to make/modify to enable it on my machine. Private Sub Application_ItemSend(ByVal Item As Object, Cancel As ...
|
| Windows service with Socket won't accept a connection | 25 Oct 2006 20:18 GMT | 3 |
I have created a Windows service that uses the Socket class to listen for incoming connections. I have tested my socket code in a normal windows application for easy debugging and everything worked fine. When I transfered this code to the service and started it up, the
|
| can .net 2003 and 2005 co-exist? | 25 Oct 2006 18:26 GMT | 2 |
Does anyone know if there is an issue with installing .net 2005 on a machine that already has .net 2003? I need to do some development on both platforms.
 Signature Jerry J
|
| writing an advanced filestream class | 25 Oct 2006 18:19 GMT | 6 |
I am trying to create a stream that writes text to a file and: - automatically creates a new file once the current file exceeds a certain size - makes it possible to be used by multiple threads and/or processes so
|
| Multiple Assembly Version Maintenance | 25 Oct 2006 15:47 GMT | 3 |
My environment is such that I have multiple assembly versions in the GAC on multiple servers. Different applications use different versions of the assemblies which is no problem with the GAC. I use VSS to track my source code so I can roll back changes if I need to edit the source
|
| How can I compile my VS2005 c# code to not be dependent on CLR to run? | 25 Oct 2006 15:44 GMT | 4 |
How can I compile my VS2005 c# code to not be dependent on CLR to run? I want people that install my software to be able to run it without having to bother with CLR's and "Windows installers". I would like to generate a binary for lets say Windows XP.
|
| What is the next event to fire after the OnCreateControl? | 25 Oct 2006 14:57 GMT | 7 |
I am designing an inherited control. Besides the OnCreateControl , what other events can be listened to that the if(!DesignMode) test willl work? The reason I am asking is that a customer has asked to hide the control. However, setting the controls visible property to false means
|
| how to load a 1.1 version assembly into 2.0 environment? | 25 Oct 2006 12:32 GMT | 3 |
Hi, all I have met a very trouble problem... I have a thirdpart component which can only run at 1.1 version, but I want to import and use it at a 2.0 project...
|