| Thread | Last Post | Replies |
|
| XML encoding using C# | 01 Apr 2006 00:33 GMT | 4 |
I've a string which needs to be converted to valid XML string. The original string might have characters such as "%", "!", "+", etc. Is there any function available in C# that could do this? Thanks,
|
| apostrophe in href path | 31 Mar 2006 23:24 GMT | 1 |
Hi all, I'm trying to create a clickable link, but the pesky apostrophe is preventing the link from getting displayed properly. I'm displaying the contents of a folder (with contains the apostrophe), with the filename as a
|
| Hiding inherited method | 31 Mar 2006 22:40 GMT | 5 |
I was trying to break some polymorphism, expecting it not to work, but I'm a curious sort. I was seeing what happens when a derived class tries to hide an inherited method with a private new method, expecting an error or warning; I got
|
| Use active directory to scan for software on a remote system? | 31 Mar 2006 22:11 GMT | 2 |
In programs like Hyena, you can use AD to view programs installed on systems. How could I do something like this in .NET? I know there is a directory control, but im not sure how to query AD to get the installed software list on a remote system that is turned on. I posted this to ...
|
| Exception Stack Trace Parameter Values. | 31 Mar 2006 21:15 GMT | 2 |
If I wanted to write something so that, when an exception was thrown, and the stack unwound, the stack trace was captured with the values of the parameters (instead of just the parameter signature for method), is this possible without exception-wrapping the guts of each method?
|
| Calling FTP process | 31 Mar 2006 20:31 GMT | 1 |
I want to write a console application which will connect to another machine and FTP files from that machine to mine. Does .Net have classes which would allow me to do this natively in the .Net platform? (Any examples???)
|
| Referenced assembly problem | 31 Mar 2006 20:09 GMT | 1 |
I'm trying to build a number of projects which depend on other projects from other solutions. All projects output class libraries. After each project is build I install them in the GAC. The problem I get is when I build a project that references one of these libraries. VS ...
|
| Generic string type defaults to null? | 31 Mar 2006 20:00 GMT | 5 |
When I use this code: public void CreateColumn<T>( string sName) { T thetype = default(T);
|
| Problem HttpWebRequest from asp.net app | 31 Mar 2006 19:55 GMT | 6 |
I created a class to submit an xml document to a webpage. When I use my class in a console application, everything submits correctly. However, when I attempt to use my class from an asp.net webpage, then it always gives me this exception
|
| Web Reference added, no intellisense? | 31 Mar 2006 19:41 GMT | 1 |
I am working on a C# Class Library that does Remoting. I would like my library to call my web service so I added a Web reference to my service with out problems. I am encountering problems when I try to instantiate an object of the
|
| A program to add, edit, remove records from Access Database.. | 31 Mar 2006 18:05 GMT | 2 |
I've been trying for a few weeks now to make a program in Visual Studio 2005 that has a combobox to select all the tables in a database. This is a part I already have. When you have selected a table the program should make a editbox for all the columns in the table with a fitting
|
| is it possible to define the order in which winform user controls load? | 31 Mar 2006 17:46 GMT | 3 |
I have one control that absolutely must load before any other controls, due to some initialisation code within it. Is there a way of getting this control to load first? Moving the code from the load event to the constructor isn't an option to get around this issue.
|
| compiler error with preprocessing directives | 31 Mar 2006 17:32 GMT | 5 |
the following leads to an error (note that TEST is not defined): #if TEST string s = @" #"; // <-- the error is "preprocessing directive expected"
|
| Fast Rename from client to server | 31 Mar 2006 17:27 GMT | 10 |
I have a C# client app that sometimes needs to do thousands of specialized file renames of files on a file server in the same domain. If the files reside locally on the client machine, the renames take only a few seconds. If the files reside on the file server, a set of 30,000 ...
|
| Stack vs. Heap Question, Please Help | 31 Mar 2006 17:13 GMT | 24 |
I had an interview today and I got destroyed :( The question was why have a stack and a heap? I could answer all the practical stuff like value types live on the stack, enums are on the stack, as are structs, where classes are on
|