Drag-and-drop between two ListView controls? Hi all, I got a form with a ListView control in detail mode. The program can be opened in several instances. I want to be able to move or copy (move by default, copy if CTRL is pressed) one or more items between different instances of the program, using drag-and-drop. Sounds straightforward to me, but I can'... 26 Jun 2010 08:39
Climate Change Effect on Mount Everest Dear all, Dipen00977.flixya.com Is only the URL where you can find the Article, photograph and Video on climate change inducing disaster? Dont miss to watch. Latest Video and discussion topic: climate change effect in Mount Everest ... 26 Jun 2010 07:35
TFTP server Here's one I made. It's MIT licensed so you can use it for anything: http://tftpserver.codeplex.com/ Bill wrote: TFTP Server 19-May-10 Hello I am attempting to create a TFTP server however I do not know where to start with this. When I do a search on the next, i find some client apps but nothing for... 26 Jun 2010 07:35
C#.net 2008 build problem I am asking for help on compiling a C#.net 2008 application since I have not been able to obtain a successful build with no errors yet. This application that we need to support has no documentation and the programmer(s) who wrote the application are not with the company any longer. This C#.net 2008 solution ha... 27 Jun 2010 16:07
How to find other attribute value corresponding searced attribute Header("Item1") returns <MenuItem Content="Open file" Name="Item1" /> How to change this so it returns Content attribute value "Open file" corresponding to Name attribute value ? public static string Header(string entity) { return Menu.Descendants("MenuItem").Where(m => (string)m.Attribute("Na... 25 Jun 2010 19:47
How to get task manager CPU and default memory column values I need to return CPU and memory columns for each process in server from web service like task manager shows by default. I tried code below but s.TotalProcessorTime throws Win32exception with stack below. How to get CPU and real memory size from server using web service ? Andrus. static void Processes(... 25 Jun 2010 08:48
WPF Message queue Hi all, First of all: sorry for my English. I'm trying to implement background data processing in WPF. For example by pushing button "A" i start some function "B" that works indefinite amount of time. That's why i show continuous progress bar till the end of function. I'm using Backgroundworker for this. But ... 25 Jun 2010 09:53
IDictionary<int, Employee> Hello! Assume I have this class declaration public class EmployeeCollection : IDictionary <int, Employee> { // Implementation code } I assume that I can't use this code because I must add an int as the first parameter and an Employee as the second parameter. In this example I add the object KeyValuePair w... 25 Jun 2010 00:06
Events and Dispose Anyone put this straight in my head... If you dispose an object that without explicitly removing the event subscription what happens? Does the event still hang there? Does it prevent the Dispose()? If so, what is the point of subbing to an event using an anon. method? Timer timer = new Timer(); timer.I... 25 Jun 2010 00:06
inheriting from Enum Hello! Do any class inherit from Enum ? Can you mention anyone. //Tony ... 24 Jun 2010 20:51 |