| Thread | Last Post | Replies |
|
| [C# COM development] output by Regasm | 21 Jul 2007 11:54 GMT | 4 |
I am debugging and learning MSDN C# COM server sample. http://msdn2.microsoft.com/en-us/library/aa645738(vs.71).aspx I am using Regasm to generate Windows Registry scripts, here it is, I can understand that for C# COM Server, since it is managed code, it will
|
| SortedList<T> missing GetByIndex method? | 21 Jul 2007 08:09 GMT | 3 |
Sorry if this is a repost. My original post appears to have disappeared. Is it just me, or is the generic SortedList<T> missing a GetByIndex method. The old (non-generic) SortedList has a method that, given an
|
| TextBox Text | 21 Jul 2007 03:26 GMT | 1 |
I've have a command button that when pressed displays the result of multiplying two decimal values. The first time the result is 13.00. If i press the buttom again (without changing the values) the result is 13.0000, again its 13.000000. Why does that happen? Is there a way
|
| unrelated event killing an asynchronous thread in progress | 21 Jul 2007 01:00 GMT | 5 |
I posted this to an ASP.Net group awhile ago, but nobody responded, so maybe this more in the C# realm. Anyway, I launch an asynchronous thread by clicking ButtonInitAsyncThread, which works fine. When it's done, it sends back it's results.
|
| Best Practice in C# for ADO.NET | 20 Jul 2007 23:34 GMT | 2 |
I would like to know which way of programming database applications is the best practice and has less problems. using code to create connection , dataset, table adapters and so on or
|
| Start "Default Web Site" programmatically | 20 Jul 2007 23:18 GMT | 1 |
I am trying to restart IIS service programmatically from an application in the same machine. It works fine except that the "Default Web Site" in IIS Manager is not started. I wonder if there is any way to start it programmatically.
|
| Derived class of StringCOnverter for dynamic propertygrid | 20 Jul 2007 23:15 GMT | 1 |
I am trying to use, public class FileNameConverter : StringConverter for creating a dropdown list within my dynamic property grid. Thus I have the methods GetStandardValuesSupported, GetStandardValues, and GetStandardValuesExclusive.
|
| ReadLine() from multiline string variable | 20 Jul 2007 21:56 GMT | 5 |
just as the subject states, I need to find a way to read each line from a multiline variable without having to write the string out to a file so I can stream it in and use ReadLine(). Below is a snippet of code where I am trying to read the string that has been passed into the ...
|
| copy a file with progressbar | 20 Jul 2007 21:47 GMT | 2 |
how can I copy a file to a folder with displaying a progressbar?
|
| advice a good ASP.NET C# 2005 book | 20 Jul 2007 21:36 GMT | 4 |
Hi colleagues, I need your advice... I have approx 1,5 years experience with ASP.NET/VB.NET 2005 and I have to switch over into C# 2005 language. I don't have experience with C#
|
| Callback mainthread in a class | 20 Jul 2007 21:16 GMT | 3 |
Hi all. I am writing a component library that does not have an interface. I would like to create a class that allows the worker thread to callback the mainthread so that the Form interface does not have to invoke the main thread before updating the control. Would this be ...
|
| Padding is invalid and cannot be removed [Cryptography] | 20 Jul 2007 20:48 GMT | 3 |
I'm coding an encryption / decryption program. At this very moment, I think I should be pretty close from the end, but there's something blocking me on my way. There's a "Padding is invalid and cannot be removed" error raised when
|
| GDI+ - finding a rectangle inside another rectangle | 20 Jul 2007 20:33 GMT | 10 |
I have a situation where I'm getting in Image that has a gray (solid, same color) background with a smaller white rectangle inside. The position is not always the same. What I need to do is locate the postion and determine the size fo the white rectangle and then crop the image ...
|
| ArrayList outofmemoryexception | 20 Jul 2007 20:28 GMT | 6 |
This line throws outofmemoryexception: for (iYear = 0; iYear <= oYearsList.Count - 1; iYear++) { sHtml.Append("<option value='" + oYearsList.Add(iYear)
|
| DataTable.Select problem <need suggestions> | 20 Jul 2007 20:16 GMT | 4 |
.NET 2.0 I'm working on a .NET 2.0 project which are using a DataSet for all communication with the database. Here is the problem:
|