| Thread | Last Post | Replies |
|
| intercepting the CLR | 18 Mar 2007 17:27 GMT | 2 |
I would like to know how is it possible to intercept the CLR. I want to be able to know if someone if calling open connection to SQL Server for example and then update the queries that are being sent or send some of my own queries on the opened connection.
|
| Problem in installing visual studio | 18 Mar 2007 15:11 GMT | 1 |
While installing dotnet 2003 in XP sp2 i am asked to install IIS & frontpage 2003 server extension. though i have installed all the components in IIS. I have tried re- installing IIS & i got an error saying
|
| Dynamically adding validation controls to a validation summary | 18 Mar 2007 12:31 GMT | 1 |
I have a number of validation controls on a webform and a validation summary. Two of the controls are hidden (contained in a Fieldset that is hidden) when the page is first loaded and I want to add them to the validation summary depending on a selection made in a dropdownlist on ...
|
| C# : textBox control | 18 Mar 2007 11:40 GMT | 1 |
this my code : string p = "REPUBLIQUE" ............... String SQl = @"select FEANME from st_cd_b where FEANME like'%" + p + "%'";
|
| asp2.0 using public property | 18 Mar 2007 10:41 GMT | 1 |
Can someone tell me why my integer variable _arrCnt is not holding its value. I’m using ASP 2.0. I’m trying to use it in a public property routine to count for my array. It keeps coming back with a 0 value instead of incrementing.
|
| disk defragmenter | 17 Mar 2007 22:11 GMT | 3 |
Disk defragmenter will not start when I want to it to run. Does anybody know what this mean? Anything would help.
|
| Using Generics vs Passing System.Type as argument? | 17 Mar 2007 22:07 GMT | 3 |
I have am currently working on a set of c# utility methods that all require a System.Type object as an input argument, either soley or along with other arguments. In call cases the calling methods are not working with variables of System.Type, they just know the type at compile ...
|
| Setup and Deployment Question | 17 Mar 2007 15:37 GMT | 1 |
I've made a Setup and Deployment project with a single textbox asking for the customer's name. I've set this textbox's "Edit1Property" to "CUSTNAME". I then opened up the Registry interface of the project, and added a
|
| *Urgent* Cannot run compiled EXE - system restarts! | 17 Mar 2007 13:49 GMT | 1 |
I cannot just open any EXE files compiled by me in Visual Studio 2005. When i try to run any EXE (or try to edit the code in VS 2005), my system simply *RESTARTS!* No error messages - no warnings!!
|
| what encoding does system.xml.xmldocument.save(string path) use to save the xml document if there is no <?xml... in the front of the xml document? | 17 Mar 2007 10:11 GMT | 5 |
what encoding does system.xml.xmldocument.save(string path) use to save the xml document if there is no <?xml... in the front of the xml document?
|
| TcpListener.Start() segfaults | 17 Mar 2007 07:52 GMT | 4 |
I have a TcpListener that gets started from a GUI button event handler: TcpListener listener; listener = new TcpListener(IPAddress.Any, 1234);
|
| Save the state of a SplitContainer | 17 Mar 2007 06:10 GMT | 7 |
I want to save the state of a splitcontainer when an application ends. I also save the form state. The SplitContainer does not seem to have a well defined place to put intiialization and termination code. I have tried to use my first splitter moved event to set the splitter
|
| How to handle this exception? | 16 Mar 2007 21:48 GMT | 7 |
Hello, friends, In the following C# code, I tried to get the values for each property in an object: public void WriteObjectValue(object obj)
|
| Loading from GAC without all information | 16 Mar 2007 20:40 GMT | 2 |
Ok, this is what I am trying to do... I am trying to build a CheckForUpdates type feature into my app. I want to enumerate all the versions of my DLL that are in the GAC (It has to be in the GAC for reasons too long to go into here).
|
| Howto: Determine within a custom attribute, the type it has been declared on? | 16 Mar 2007 20:18 GMT | 2 |
I have a custom attribute that inherits from System.Attribute and itself is declared with the AttributeUsage( AttributeTargets.Class ) attribute. Regarding this I have two questions. Can I further limit my attribute to only be applicable to types that are
|