| Thread | Last Post | Replies |
|
| .NET 2.0 generics - intellisense disagrees with compiler? | 20 Aug 2006 18:43 GMT | 1 |
I have tihsl ine of code: textBox1.Text = string.Join(",",(checkedListBox1.SelectedItems as IEnumerable).ToArray<string>()); It was composed using intellisense e.g. it told me the method is there,
|
| setup project?? | 20 Aug 2006 16:14 GMT | 1 |
I have a setup project that installs an application. I want the setup project installs .NET Framework by itself. How can I include .NetFramework package to be installed before my application.
|
| Simple program causes InvalidProgramException | 20 Aug 2006 15:00 GMT | 5 |
Hello. When I run the program below, I get the exception System.InvalidProgramException: Common Language Runtime detected an invalid program. (Visual Studio 2005 version 8.0.50727.51) I can work around it (by having the delegate point to a helper function).
|
| MenuStrip and ContextMenuStrip | 20 Aug 2006 14:49 GMT | 2 |
What are the differences between these 2?
|
| Windows Service whose functions you can connect to remotely | 20 Aug 2006 14:44 GMT | 2 |
Which ways are there to make my Windows Service functions accessible remotely in C#?
|
| excel report | 20 Aug 2006 14:03 GMT | 1 |
how do i read and write into a excel file using 5.0 com object library. Kalaivanan
|
| connectionstring application scooped???security?? | 20 Aug 2006 14:00 GMT | 1 |
Why is the connection string application, it really help if she was user scooped, is because of security???
|
| Free Reports | 20 Aug 2006 13:32 GMT | 9 |
Does anyone knows about some free reporting system (something like FreeReport for Delphi) ? I know that there's Crystal Reports, but i can't afford commercial version of VS yet. I would like to use it for displaying data ( in some configurable way
|
| Allow the user to add his C# code class at runtime | 20 Aug 2006 10:01 GMT | 2 |
I am working in a simulator (C# window application) for networks. I want to allow the user to add his own code (e.x. routing protocol) written in C#. How can I give my simulator to provide such capability? (In a way similar to MATLAB for example where we can build .m file to the ...
|
| what is "new ClassName[ ... ]" (?) | 20 Aug 2006 08:53 GMT | 4 |
I'm trying to re-construct missing classes in somebody else's code. Salient points: Dictionary<string, Project> projects = new Dictionary<string, Project>(); ...
|
| Slow Downloading | 20 Aug 2006 08:41 GMT | 5 |
I have a problem downloading a file . after i connect to the website and get the stream , i treing to write the file on the HD. public void SaveStreamToFile(string filePath, Stream stream)
|
| Accessing Clipboard in console Application | 20 Aug 2006 07:34 GMT | 9 |
I need to retrieve a string from the clipboard in a console application, I have tried many methods but all seem to return a null value, any help regarding this issue would be greatly appreciated
|
| is it possible to send event object as a parameter | 20 Aug 2006 05:58 GMT | 1 |
Class CharChecker has a field that is called TestChar that is of type event CharEventHandler. I know that if I change in method foo so I have tester.TestChar +=new CharEventHandler(Testing);
|
| Adding comments to members | 20 Aug 2006 05:00 GMT | 2 |
Is there an attribute available that allows comments to be added to properties & other members of a class that you have created, (as in the ones you see when you click a member in any class in the .Net library of classes). If so, which namespace would it reside in?
|
| ObjectDataSource and Guid | 20 Aug 2006 02:26 GMT | 1 |
I need to add a Guid parameter to my objectdatasource. But how??? First I get a string with the guid value. Sounds like I have to transfor the string to guid. Second I have to add the guid to the objectdatasource.
|