| Thread | Last Post | Replies |
|
| HTTP status 407 | 20 Nov 2006 06:20 GMT | 1 |
New to C#. Using C# Express When I try and use "Help" I get this message: The request failed with HTTP status 407: Proxy Authentication Required ( The
|
| Q: String (Capital S) vs string (small s)? | 20 Nov 2006 02:51 GMT | 11 |
What is the difference by using String myString or string myString when declaring a string ? Regards Martin
|
| Easiest methods for copying and removing +elements+ of one ArrayList to/from another? | 20 Nov 2006 02:18 GMT | 4 |
I have three Arraylists that hold strings corresponding to addresses of an e-mail list: ArrayList masterList ArrayList optInToMasterList
|
| Services and Application.Run | 20 Nov 2006 01:04 GMT | 5 |
Will Application.Run() work within a service? (e.g. will the message pump be operational) My service works as an exe but not a service, i'm wondering it's it's due to that.
|
| Obtaining control under mouse | 19 Nov 2006 23:08 GMT | 4 |
Hello Group In the old days i'ev created a VB6 appl. that was able to obtain the underlaying control under the mouse pointer. I would very much like to do that in a C# application. I'll use VS2005 and .Net 2.0
|
| Any new ToolStrip options coming soon? | 19 Nov 2006 22:09 GMT | 1 |
I saw the following on the Internet and wonder if you have any inside info about future improvements to the ToolStrip family that can be shared ? Is it possible to have the same items in two different MenuStrip controls, for example the main menu and a context menu?
|
| singleton ienumerable, need to add more... | 19 Nov 2006 21:43 GMT | 13 |
I have a singleton ienumerable that collects data from a database. I have listed the code below. It has the usual methods of current, move and reset. I need to go to a certain position or set filters or many other things and I don't know how to do this. I have just learned ...
|
| Bug with Array.CreateInstance() when lower bound > 0 | 19 Nov 2006 21:24 GMT | 2 |
If you create an array using Array.CreateInstance() and use a lower bound > 0, you apparently get an array of the wrong type. int[] lenghts = new int[] {1}; int[] lowerBounds = new int[] {1};
|
| Question about assembly info in C# | 19 Nov 2006 21:17 GMT | 2 |
I have experience in Java and C++ but I am rather new to C# and just started learning it. I am using Visual C# 2005 Express Edition and I found that there is a file called "AssemblyInfo.cs", which is something like I attached below. Would anyone please let me know what is the
|
| ArrayList sorting on stronged typed objects | 19 Nov 2006 21:15 GMT | 6 |
If I have class Student { public string LastName
|
| What keeps track of delegates? | 19 Nov 2006 20:58 GMT | 5 |
If I have multiple subscribers to a delegate, what keeps track of them? Are they out there on the heap? When I declare a delegate: public delegate void MyDelegate (object myObject, MyObjectEventArgs
|
| Problem with é, ö and so on. | 19 Nov 2006 20:47 GMT | 2 |
I have made a little program to create a playlist of all the mp3 's in a folder. That work fine for me, but I have a problem with special characters like é and ó. In my playlist, they are good, but when I open the playlist in WinAmp, then
|
| Xml Data Storage | 19 Nov 2006 20:35 GMT | 1 |
Hi Guys, I'm developing an application that sends ICMP echo requests (ping) via the .net Ping Class. I've some informations related to the network such as IP addresses,Urls,SiteNames and so stored in a xml file. I need to use theese informations in my ping method. The ping method ...
|
| Simple collection for single key multiple data? | 19 Nov 2006 20:33 GMT | 2 |
Is there a collection that lets you use a "multimap" like feature. something like MultiHash.Add(Some_Key, Data1); MultiHash.Add(Some_Key, Data2);
|
| Debugging Backwards in Time | 19 Nov 2006 19:52 GMT | 2 |
Bill Lewis has implemented what I have always wanted. VS team should watch. http://video.google.ca/videoplay?docid=3897010229726822034 The array and thread/lock debugging latter in the vid seems amazingly useful. Cool stuff.
|