| Thread | Last Post | Replies |
|
| Few Question in C# and Assembly | 27 Jul 2005 08:11 GMT | 2 |
I have following questions regarding C# Assembly and Threading. Let me know the precise answer or lead me to the proper materials. 1. Is memory leakeage possible in .Net Manager Code ? 2. Is memory leakage possible in .Net Unmanaged Code ?
|
| PaintEventArgs becoming empty -> black screen | 27 Jul 2005 08:06 GMT | 2 |
To get faster performance of my DataGrid during scrolling I wanted to build a timer in the Paint-event that waited some milli-seconds to Paint and cancelled the method in case it received a new Paint (during scrolling). But it doesn't seem to work :-(
|
| Dataset Conversion From 1.1 to 2.0 | 27 Jul 2005 07:26 GMT | 1 |
Has anyone seen this? We are porting a web application from .NET 1.1 to 2.0 beta, and receiving errors "The type <dataset> already contains a definition for <event handler>" Looks like the error is happening in a temporary cs file. The
|
| Dataset Issue .NET 2.0 | 27 Jul 2005 07:24 GMT | 1 |
Has anyone seen this? We are porting a web application from .NET 1.1 to 2.0 beta, and receiving errors "The type <dataset> already contains a definition for <event handler>" Looks like the error is happening in a temporary cs file. The
|
| A Directory Service error has occurred | 27 Jul 2005 06:53 GMT | 1 |
Hello, I work giving support to a system developed in .NET wich uses Autorization Manager, Remoting, and Reflection. I'm having trouble with the system at the production environment because sometime it launches an Exception with the message "A Directory Service error
|
| HttpUtility.HtmlEncode and HtmlDecode problems | 26 Jul 2005 20:09 GMT | 1 |
In working with System.Web.HttpUtility class, I've come across some inconsistencies in encoding and decoding. If I start with the following code: string s = @"& " ' < > ® ™ © é"; s = System.Web.HttpUtility.HtmlDecode(s);
|
| Multiple inheritance in VB.NET | 26 Jul 2005 18:28 GMT | 3 |
Is ther a way, to do multiple inheritence(Implementation based) in VB.NET I am aware of interface based, but i need to know if there is any way to get around and do implementation based Multiple Inheritence. The situation is that, i have written seprate classes to parse a XML
|
| Copy files over a network share | 26 Jul 2005 18:14 GMT | 2 |
I want to copy files residing in a network shared folder, but I have to pass different user credentials than the executing user. How can I accomplish this. The System.IO.File.Copy overloaded methods don't accept credentials in any form.
|
| 1.1 and 2.0 Framework in production enviroment | 26 Jul 2005 18:06 GMT | 3 |
I've been task to get a general feeling of how well 1.1 and beta 2 work side by side, both in production and development. Any known issues with installing 1.1 framework and 2.0 framework side by side in production?
|
| Running VS2005 web app on framework 1.1? | 26 Jul 2005 18:05 GMT | 3 |
I'm trying out the beta 2 of VS2005 and I'm wondering: Do I need to use framework 2 beta to run the web app I make in VS2005 or can I use 1.1? Is this a setting somewhere? Thanks in advance,
|
| Problem during uninstallation of assembly from GAC | 26 Jul 2005 17:27 GMT | 1 |
I am trying to do an uninstallation of assembly (for example, abc.dll)from GAC using the following. gacutil.exe /uf abc This works in Win XP, but this is failing in Win 2k(saying "Assembly
|
| "Abstract" interface ? | 26 Jul 2005 15:25 GMT | 6 |
I have 3 interfaces in my app in order to allow my app to be extensible. INode, IDestination : INode ISource : INode
|
| C# Clipboard problem | 26 Jul 2005 13:45 GMT | 1 |
I'm having a strange clipboard problem. In my code, I send Alt+Print Screen to the current window and save the image to disk. The code is pasted below: public string CaptureAndSave() {
|
| Print Dialog Icon?? | 26 Jul 2005 13:02 GMT | 1 |
Visual Studio 2003 C# I have a print function in my application, which pops up a print preview first using the standard PrintPreviewDialog(). The only problem is the icon. It picks up the nasty looking standard one with the red yellow blue boxes on
|
| Double Buffering and MyBase.OnPaint(pe) | 26 Jul 2005 09:00 GMT | 5 |
I have my custom Inherited DataGrid. I override the OnPaint-event to speed up things and avoid flikkering using Double Buffering. To draw the normal things of the DataGrid I have to call the MyBase.OnPain(pe). But in my opinion it doesn't seem to be painted on the buffer. Everything ...
|