| Thread | Last Post | Replies |
|
| How to covert Int64 to Hex | 31 Jan 2008 06:11 GMT | 3 |
To convert hex to Int64 I can use: string hex = "413208A97245F5AE"; Int64 intFromHex = System.Convert.ToInt64(hex, 16); //intFromHex = 4697826885160531374
|
| Reflection over an array of objects | 31 Jan 2008 02:36 GMT | 5 |
I have an array of objects. Each object has 14 private fields. For each object, I would like to determine the maximum number of characters contained within that field, trimmed of any trailing spaces.
|
| how to determine what language a c# string is written in? is there any C# method to take a string and return what language it is in? e.g. english, hindi, spanish, etc. | 31 Jan 2008 02:19 GMT | 5 |
how to determine what language a c# string is written in? is there any C# method to take a string and return what language it is in? e.g. english, hindi, spanish, etc.
|
| Accessing web page from C# application | 31 Jan 2008 02:15 GMT | 4 |
How do I access a web page from a normal C# application? Many thanks, Adrian.
|
| Get names of Unicode characters | 31 Jan 2008 00:37 GMT | 2 |
Is there anything in the .NET Framework, or any third-party class I can get, that would translate Unicode characters to their names? For example, given \u0033 it should give me "Numeral Three" or words to that effect, and likewise for much if not all of Unicode.
|
| robocopy equivalent in C# | 30 Jan 2008 23:25 GMT | 11 |
I am building an application that requires copy a decent number of files around. Till now, to demonstrate the prrof of concept, I used pInvoke to invoke robocopy to do all the heavy lifting. Is there any .Net component that I can build/download/buy that will allow me
|
| AR2000 Compression/Decompression Algorithm | 30 Jan 2008 23:11 GMT | 4 |
Does anyone have the source code for a C# implementation of the AR2000 Compression/Decompression algorithm that they might like to share?
|
| Diamond problem | 30 Jan 2008 21:52 GMT | 11 |
How does C++ and C# solve the Diamond problem? With the help of interfaces that is. Can anyone elaborate ....... Regards
|
| enum basics | 30 Jan 2008 21:33 GMT | 7 |
hey all, is there anyway to ask the Enum what the string value is with a given value? Like how you would access an element of an array? enum Myenum
|
| Debugging emulators | 30 Jan 2008 21:12 GMT | 2 |
Does anyone know how to debug applications using emulators?
|
| Creating temp tables from C# application and then using them | 30 Jan 2008 20:56 GMT | 2 |
Because of the constraints with the size VARCHAR and the number of elements allowed in a WHERE IN clause, I need to create a temp_table that I insert ids into and then within my stored procedure select from that temp_table. Currently, my stored procedure sends in an associative ...
|
| ComboBox properties | 30 Jan 2008 20:51 GMT | 2 |
Is it possible to have a combobox contain 2 fields from a database table -- having the 1st field displayed in the textbox area and HIDE the 2nd field? When the user selects a value from the textbox, the hidden field is then passed to the program (Ex: Have a combobox display the ...
|
| Reusing the name of local variable | 30 Jan 2008 19:00 GMT | 19 |
Can someone explain what is the reasoning behind the following behavior? Local variable "boo" goes out of scope but I am not allowed to reuse the name. And if it doesn't go out of scope, how come I cannot access its value? internal sealed class Program
|
| WPF Focus | 30 Jan 2008 18:57 GMT | 3 |
I have a combobox, and the template for each item in the combo contains two text boxes. If the textbox is readonly, I'd like clicking on the textbox to select the item and close to dropdown. Otherwise, the default behavior is fine.
|
| Set a MenuItem's ID | 30 Jan 2008 18:50 GMT | 2 |
In C#, is it possible to set a MenuItem's ID without calling and importing the Win32 API function "SetMenuItemInfo?" Perhaps another class in C# contains a method I'm looking for? Thank you.
|