| Thread | Last Post | Replies |
|
| Some cast problem and something about generic | 18 Jul 2008 20:38 GMT | 4 |
Below I have a complete working program.with some simple classes one of these is a generic class. The question is about this method GetCows() {...} which is a member in the generic class.
|
| How do I know a MemberInfo is static? | 18 Jul 2008 20:33 GMT | 4 |
Is there any way I can find out a MethodInfo/PropertyInfo/... is static (which means the same as in C# language here)? Thanks!
|
| Wrong result with double.Parse() | 18 Jul 2008 20:31 GMT | 5 |
i have the following problem in our project: If I try to parse a string value with the following line double x = double.Parse("39.95238", CultureInfo.InvariantCulture); x contains 39.9523799999.... instead of the correct one.
|
| Beginning WPF books | 18 Jul 2008 20:16 GMT | 4 |
Can anybody recommend a good beginners guide to WPF?
|
| Is there a limit on # of radio buttons | 18 Jul 2008 19:05 GMT | 12 |
I have 8 radio buttons on my Windows form but I can only select up to the first 4. If I click on any button beyond the 4th one and then come back into the program again the 4th button is always checked instead of the 5th or 6th etc. I followed the logic thru the debugger and ...
|
| determine common members in list of lists | 18 Jul 2008 18:34 GMT | 6 |
InstrumentPropertyEntity string Name InstrumentEntity string Name
|
| CSV Files | 18 Jul 2008 17:44 GMT | 8 |
I've got a project that I'm sending output to a CSV file. Some of the fields have commas in them and some of the fields have spaces. When I attempt to open the file with a double click or Process.Start, the default application opens it: MS Excel. This is fine.
|
| asynchronous delegate question | 18 Jul 2008 15:44 GMT | 2 |
I'd like to invoke a couple of methods retrieved from multiple, dynamically loaded Assemblies (I have the MethodInfo objects) asynchronously and wait for all methods to finish processing before I continue. The method signature is:
|
| Does this book exist? | 18 Jul 2008 15:43 GMT | 1 |
"Windows Admin Programming with Visual C# 2005 Little Black Book" It's on Amazon, and www.jesseweb.com seems to indicate it was published also. I can't seem to find it though.
|
| How to read a user setting in another project? | 18 Jul 2008 15:35 GMT | 1 |
There are two projects in my solution, one is utility dll and the other is the main executable. I have user settings in the exe project. However I want to read the settings in the utility dll so that the utility dll can be reused in other projects but generate project-
|
| how to get the value of the cell in datagridview | 18 Jul 2008 15:29 GMT | 2 |
I have a datagrid with 12 columns and various rows... what I want to do is to get the value of each cell, e.g. column3 row1, column4 row1, etc.. I was using dataGridView1.Rows[dataGridView1.RowIndex].Cells but I got
|
| Display Extended ASCII in listview | 18 Jul 2008 15:20 GMT | 5 |
I want to display the extended ASCII charset in the list view (in List mode), but when i assign any of the Ex. ASCII chars to the listview item text, it renders blank. Any idea how i can display the Ex ASCII chars in list view.
|
| Learning C# - Looking for a good, free IDE | 18 Jul 2008 15:13 GMT | 18 |
I am trying to learn C# (and how to utilize WMI queries to get information from remote servers). I am looking for a free IDE. Does anyone have any suggestions? Thanks for the help.
|
| Serialport Threading | 18 Jul 2008 15:09 GMT | 5 |
I have a serial port reader application that uses datareceived event [port_DataReceived(object, SerialDataReceivedEventArgs)] to read incoming data. The application also send response some of the messages.
|
| Finding Download Speed using DownloadFileAsync | 18 Jul 2008 15:00 GMT | 2 |
I know there isn't a specific event property for the download speed, but can anyone tell me how to find it? I'm not sure how to write the code. Thanks, Jason
|