| Thread | Last Post | Replies |
|
| C# Structures, Constructors and Unmanaged Code | 26 Aug 2005 16:07 GMT | 2 |
I have created a C# class library to interface to unmanaged code in a DLL. Everything is working fine. In some cases, I have structures passed by value or reference (out or ref). In some cases, there are structures within structures.
|
| Synchronization bool shared fields | 26 Aug 2005 15:47 GMT | 3 |
Is synchronization for bool shared fields required in multithreaded application? Is there a cases when for example changing value from true to false in one thread, when another thread is reading this field, will lead to true value
|
| Review my architecture please | 26 Aug 2005 15:14 GMT | 1 |
I have to write a rather small project quickly, and I am trying to keep every clean and OO. I am fairly new to .NET. I'd like your comments on my proposed solution. Request:
|
| How to tell if an interface method has been implemented | 26 Aug 2005 14:37 GMT | 6 |
I have a simple interface with two methods, MethodA, and MethodB. I also have a class with implements the interface. The class provides a full implementation for MethodA but for special reasons, provides only a stub for MethodB, with no code in it.
|
| .Net supported on NT?? | 26 Aug 2005 14:17 GMT | 4 |
I thought that I had read somewhere that .Net applications wouldnt work on NT. However I have installed the .Net framework on some NT machines, and indeed my application on them, and they appear to work, although somethings are a bit different. Whats the word on this?
|
| .net app from shared folder | 26 Aug 2005 13:54 GMT | 2 |
We have created a .net app that runs properly from a local dir (C:\AppFolder) but crashes when run from a network drive (R:\AppFolder). Can someone tell me what the scoop is with that?
|
| Enterprise Library - No Touch Deployment | 26 Aug 2005 12:17 GMT | 1 |
Enterprise Library - No Touch Deployment: I have used this website and I cannot get to it. http://blog.hishambaz.com/archive/2005/01/29/194.aspx Invalid section name. The section 'dataConfiguration' does
|
| List SQL servers in a network | 26 Aug 2005 11:33 GMT | 5 |
I know this is a very common issue and I found a lot of hints on this topic in www but I did not find a very good solution for this task. Most of the solutions use SQLDMO to list all sql servers in the network like this C# code:
|
| DataGridView Readonly on Cell or Row ignored? | 26 Aug 2005 09:03 GMT | 2 |
I'm feeling like a total idiot at the moment. We're building an app in .NET 2.0 beta 2, and no matter how hard I try, I can't get a DataGridView to accept ReadOnly = true on a cell or row. Columns work fine, and stepping through the code clearly shows that
|
| Mediator design pattern | 26 Aug 2005 09:00 GMT | 1 |
can someone give a real app example of where the Mediator design pattern could be used ( for instance in a relational database application )? Thanks, José Carlos Ferreira
|
| VS.2005 compatible with VS.2003 | 26 Aug 2005 07:46 GMT | 2 |
I have a few VS.2003 applications, once VS.2005 RTM comes out, is it just a matter of recompiling those applications in the VS.2005 IDE, or am I going to run across several compatibility issues? Once the 2.0 framework comes out, I'll have that installed on my clients PCs.
|
| regular strings in resx? | 26 Aug 2005 07:41 GMT | 1 |
how to read regular strings from a resx file? ResourceManager.GetString() returns @"first line\nsecond line" although "first line\nsecond line" is in a resx file. or is any string in a resx file verbatim by definition? if yes my next question is: how to use regular strings in ...
|
| Pics not showing up | 26 Aug 2005 07:40 GMT | 1 |
I build a simple concept ASP.NET 2.0 web site. Howeve, when I run it none of the pictures show up. The pictures are .gifs located in the App_Data folder. I just dragged them into the designer (where they appear fine), so I don't think incorrect pathing is an issue. Has anyone ...
|
| Datagrid in a dataset | 26 Aug 2005 07:36 GMT | 1 |
I have a datagrid I want to store the data in the datagrid to a dataset. Can anybody please tell me how to do this. TIA.
|
| Performance of shared function in clas vs. independent class | 26 Aug 2005 07:33 GMT | 4 |
I have a public shared function in a utility class full of other public shared functions. It does not get hit that often but when it does the hit will be long-ish and involve potentially thousands of operations, though it does not make calls to any other non-system assemblies. ...
|