| Thread | Last Post | Replies |
|
| Merging two DataTables in same data row | 11 Jul 2008 10:48 GMT | 1 |
do you know a simple way how to merge two datatable that kind, that both divide the same data row? I've got a DataTable with only one data row and another DataTable with only one data row. I want a merged DataTable consisting of the columns
|
| MinMaxArray | 11 Jul 2008 10:13 GMT | 11 |
I would like to have a generic class MinMaxArray<T>, which is a wrapper around an array of T[] and computes minimum, maximum, and average value from the array T[]. I need it only for the basic numeric types (int, float, etc.).
|
| SendKey and combo box | 11 Jul 2008 09:20 GMT | 1 |
I am trying to create a on screen key board. I simply want to send a key (Simulate the keyboard) to a combo box using the Handle of the control. The below code is not working public const ushort WM_KEYDOWN = 0x0100;
|
| Zip revisited | 11 Jul 2008 08:26 GMT | 3 |
There are lot of posts on it but couldn't find a definite answer I am looking for, 1. I found the approach to use J# lib to compress and uncompress files. But it seems if I compress the file with this tool then I am
|
| Help! Browse folder option in asp.net (C#) - The code does not wor | 11 Jul 2008 08:12 GMT | 1 |
I am trying to browse folders through the following piece of code. Please let me know if there is any kind of setting to get this working right? using shell32.dll;
|
| Use ReadXML of XSD works with XMLReader but not with Stream-any id | 11 Jul 2008 06:16 GMT | 1 |
sXML - has XML string //This dies on ReadXML - something about invalid character MemoryStream stream = new MemoryStream(sXML.Length); System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
| converting hashtable.values to arrayList | 11 Jul 2008 03:25 GMT | 2 |
How can I convert hashtable.Values to an ArrayList? Thanks a Lot, Macky
|
| RichTextBox.GetLineFromCharIndex discrepancy | 11 Jul 2008 02:31 GMT | 2 |
Im having problems with the value being returned by the richtextbox.GetLineFromCharIndex method. Its returning a value that is more than the richtextbox.Lines.Length. Im trying to print selected lines of text from a richtextbox control. Here is my sample code: The lines of text in ...
|
| Managing data within events A and B, when event C fires | 11 Jul 2008 02:11 GMT | 6 |
I have three events, using event handler methods as depicted below. Two of those event handler methods need to reset specific data whenever the other event left fires. I wasn't sure how to properly implement that, is there a better way than using state management
|
| Button Name not changing | 11 Jul 2008 02:10 GMT | 4 |
I have an executable that has a button that I want to change the name of to "Now Processing...". When the process is done, I want to change it back. The problem is that the form is not showing the new name. I assume I would
|
| Sort Datagrid bound to custom class array | 10 Jul 2008 23:18 GMT | 5 |
Does anyone have any example code showing how to sort a datagrid that is bound to a custom class array? My code calls a web method that returns an array of type LeadListDS. LeadListDS consists of string, DateTime, and boolean datatypes. This returned array is then bound to
|
| Formatting Money | 10 Jul 2008 23:10 GMT | 4 |
If I have an Int64 which is $$$$$cc, what is the best way to format it to a string '$nnnn.cc' ?
|
| CaseInsensitiveComparer with Generic List problem | 10 Jul 2008 23:03 GMT | 2 |
I need to do a case insensitive search on a Generic list. I'm trying to use the BinarySearch method but I get a complier error "cannot convert from 'System.Collections.CaseInsensitiveComparer' to 'System.Collections.Generic.IComparer<string>' "
|
| C# "expert" in two weeks | 10 Jul 2008 22:29 GMT | 11 |
Ok, first lets start with some definitions: By "Expert", I mean someone who : 1). Is familiar with and understands the *MAJOR* concepts/philosopies underlying C# (and possible .Net as a whole - over and above CLI, CTS etc)
|
| How to detect language changes? | 10 Jul 2008 22:20 GMT | 5 |
I need to redundantly write C++ and C# programs to (1) determine the input language (german, french, english...) (2) determine changes in the input language (preferably a delegate rather than polling!)
|