| Thread | Last Post | Replies |
|
| Newbie: How to extend a class? | 21 May 2007 22:35 GMT | 5 |
I have a dotnet assembly which includes classes RequestType, Response, Transaction, and TransactionElement. To use this I would normally create a new Transaction passing it a parameter of RequestType and receive a Transaction object of the right type in return.
|
| VS2005: see return value? | 21 May 2007 21:31 GMT | 1 |
If I breakpoint on the closing brace of a function with a return value, can I see what the return value is at that point? How? Thanks. Example: bool funcA() {
|
| Generics Issue with Simple Factory | 21 May 2007 20:58 GMT | 1 |
I have 1. An interface (generic). I simplified it to have one method. 2. A class which implements this interface. This class is also a Singleton.
|
| file transfer with sockets | 21 May 2007 20:11 GMT | 10 |
I have googled to no avail on getting specifically what I'm looking for. I have found plenty of full blown apps that implement some type of file transfer but what I'm specifcally looking for is an example to follow for using a tcp socket to transfer files between client/server, ...
|
| Installer Project in Microsoft Visual C# 2005 Express Edition??? | 21 May 2007 20:08 GMT | 2 |
I am wanting to create an installer project in Microsoft Visual C# 2005 Express Edition, but I can't see how to do it. I see in online help that you should go to File...Add...New Project... and choose Setup/Installer Project. But, this is not an option in my Project
|
| using rundll32.exe to access control panel applet? | 21 May 2007 20:05 GMT | 1 |
I don't know if this is possible but I'd like to access the functions contained in the 'Mail' applet within the Control Panel. Specifically I want to access the 'Profiles' list and then if the desired profile (source) name is found Copy... it to another name (target) - set the
|
| Have getfile show hidden/system files | 21 May 2007 20:02 GMT | 1 |
Is there a way to have GetFiles() show hidden files also? Thanks
|
| C# and regex continued | 21 May 2007 19:33 GMT | 1 |
Kevin Spencer was kind enough to provide me with the following regular expression: (?<artist>\w+)\s+-\s+(?<title>\w+)(?:\s+[\(\[](?<remix>\w+) [)\]])? This works great when I try to group the following mp3 naming
|
| Accessing an XML file through strong typed dataset | 21 May 2007 18:50 GMT | 3 |
I have an xml file, I need to be able to read the data into strong typed dataset for further use in my application Can someone point me to documentation as to how I can do this. I have absolutley no idea where to start.
|
| [WPF] error starting application from explorer, but OK from VS | 21 May 2007 18:43 GMT | 4 |
Hi group, I have a strange error. I'm a beginner with dotnet 3.0, when i try to run an wpf application from my windows explorer, the application crash.
|
| Problem with webclient uploadvalues on SOME computers | 21 May 2007 16:36 GMT | 1 |
I have a .NET Winforms application that regularly posts to a PHP page. Till a few days back this worked perfectly. However, now, on certain machines, after the data is sent to the server, the server reports that no data is present. The code still works on my development
|
| Visual Studio 2005 Code Snippets is wrong (Search a Directory for Files Recursively) | 21 May 2007 16:02 GMT | 2 |
You can download them here: http://msdn2.microsoft.com/en-us/vstudio/aa718338.aspx This snippet seems wrong: Visual C# 2005 Code Snippets -> filesystem -> Search a Directory for
|
| how good is .NET's Random for making random numbers? | 21 May 2007 15:58 GMT | 41 |
Anyone do any tests on it? I would assume it has improved since C's rand(), but who knows. For some reason, and it could just be coincidence, I seem to see patterns. But even a crappy rand() function should be good enough to avoid that, so i may be seeing
|
| Dispose, finalize and singleton classes. | 21 May 2007 15:40 GMT | 2 |
Since singleton classes conceptually are like static classes, the are supposed to last for the entire lifetime of the application. Starting from this point tell me if I'm wrong saying: - it make no sense to implement IDisposable
|
| Disposable Canvas? | 21 May 2007 15:35 GMT | 26 |
OK, why is Canvas not IDisposable, and how do I get rid of all the Windows handles? I'm doing a performance test of looping through a dynamic XAML-to-JPEG conversion. It gets to about 500 conversions and then crashes. Task Manager
|