| Thread | Last Post | Replies |
|
| Conditional compiling | 30 Mar 2006 00:51 GMT | 10 |
I need to be able to support multiple versions of c#. Does the compiler define any #defines so you can tell if you are compiling for.NET 1.1 or 2.0?
|
| outlook2003 add-in | 30 Mar 2006 00:40 GMT | 3 |
Hi, I'm writing an add-in for outlook 2003 which automatically schedules the users tasks from the task list in to the calendar with respect to priority. I can sort the tasks by priority within the task list via; _Items olTasks = olFolderTask.Items; // MSO items collection in ...
|
| What is a "Predicate delegate" | 29 Mar 2006 23:23 GMT | 8 |
I was recently advised: << Use List<struct> and Find() using different Predicate delegates for your different search needs.>> What is "Predicate delegate" as used in the above recommendation?
|
| Deleting a directory | 29 Mar 2006 22:15 GMT | 5 |
I am trying to delete a directory and with the resursive parameter set to true Directory.Delete(@"c:\MyFolder", true); but I got an IOException saying "The directory is not empty".
|
| how is TreeNodeCollection.Find implemented? | 29 Mar 2006 21:45 GMT | 2 |
If you look at TreeNodeCollection.Find Method, you'll see: Finds the tree nodes with specified key, optionally searching subnodes. public TreeNode[] Find ( string key,
|
| Books download | 29 Mar 2006 21:30 GMT | 2 |
http://www.books-download.com All for free
|
| REPOST: preventing more than one user from working on the same record | 29 Mar 2006 21:19 GMT | 3 |
I am working on an app that will display the list of all scheduled call records in our database to the users. All users of the application will see the same list of call records and will select any record and try to call the contact person for that record and edit the record. Now ...
|
| How can i make the intelligence xml file for a .net assembly? | 29 Mar 2006 20:55 GMT | 1 |
How can i make the intelligence xml file for a .net assembly? Thanks in advance!
|
| Text floating in front of a window. | 29 Mar 2006 20:34 GMT | 3 |
I want to display a message to the user that appears to float in front of a window. I could do it with another window but there's no way to make the window itself completely transparent but still see the text. Is there any way to do this?
|
| Creating a Playback utility | 29 Mar 2006 20:26 GMT | 1 |
I need to create a test playback utility where I can: - Capture the steps that a user takes on a screen such as filling in a field, pushing a button - Plays them back
|
| Huffman compression? | 29 Mar 2006 20:19 GMT | 3 |
Does anybody know where I can get some info on using huffman compression and decompression in C# BUT I need to use my own custom table & tree, that is very important. Thank you!
|
| Formatting a datetime var for simple display | 29 Mar 2006 19:59 GMT | 2 |
I have a datetime object named day1 that I want to display as just 3/29/2006 : Response.Write(day1); ..but this will display the long default 3/29/2005 12:00 AM .
|
| run WindowsService in x86 mode on a 64bit Server 2003 | 29 Mar 2006 18:54 GMT | 3 |
I have written a WindowsService in C# 2005. I am running this service on a 64bit Windows Server 2003 and I like to run some Interop.Excel within this service. It seams that Interop does not run in 64bit mode ...
|
| AppDomain CreateInstanceAndUnwrap | 29 Mar 2006 18:53 GMT | 1 |
I still have some problems with AppDomain ... :-(( I am loading a dll by using AppDomain, AssemblyName and Assembly. This works fine. My dll implements a Interface. Now I would like to be able to
|
| Namespaces | 29 Mar 2006 18:11 GMT | 6 |
What is a good rationalle for creating namespaces? Please understand that I know what they are... I'm just wondering when it would make sense to group my types into multiple namespaces. I see that Visual Studio thinks that placing files into folders means that everything in a ...
|