| Thread | Last Post | Replies |
|
| fire events in derived class | 28 Mar 2008 20:09 GMT | 6 |
whats the best way of firing events in derived class? expose a protected function in base class which fires the event? Also where should i declare the delegate? same file as the base class?
|
| Exceptions while reading a null file | 28 Mar 2008 20:06 GMT | 1 |
vs2005 C# How many exceptions should I trap when reading a file ? let me clarify... c is my pointer to the processing line
|
| Windows Firewall | 28 Mar 2008 19:41 GMT | 3 |
Is there a programmatic way of opening ports in Windows XP/Vista or at worst turning on/off the windows firewall? Which libraries should I be looking in for the firewall class? Thanks,
|
| How can I prevent someone run a "HEX modified" executable ? | 28 Mar 2008 19:38 GMT | 3 |
How can I prevent someone run a modified executable assembly (ie: modified with an Hex editor) ?? I use .NET 2.0 and VS 2005. Steph.
|
| break out of if | 28 Mar 2008 19:08 GMT | 9 |
it seems a shame you can not do this: if (blah) { if (blob) break; }//if
|
| Converting a Multidimentional Array | 28 Mar 2008 19:03 GMT | 2 |
I am trying to convert MD array of ints to doubles; I just want each x to be converted. I am getting a Nullexception. I was able to do this with a single dimention, but I am having
|
| C# generic containers from a "C++ perspective" | 28 Mar 2008 18:36 GMT | 33 |
When I have a List<T> in C#, I think that the "list" (i.e.: dynamically growing array) stores "pointers" to T instances, e.g. considering a pseudo-equivalent C++ code, my understanding is that the C# version: List< MyClass >
|
| Picking up the caching value from a Web.config -- please help | 28 Mar 2008 18:30 GMT | 1 |
Hope you can help me with this. I have the following inside the App.config of a DLL: <cache disableMemoryCollection="false" disableExpiration="false"
|
| generics and inheritance: List<T> | 28 Mar 2008 17:06 GMT | 2 |
The following code: public class SubPoint2D : Point2D { public int Code;
|
| DataGridView - strange | 28 Mar 2008 17:05 GMT | 2 |
I have a datagrid view that I have made in the designer. When compiled and data is loaded into it, it looks great. I have this on page 1 of a tab control. Pages 2 through N are created on the fly in a loop, the code for that loop is below, as with the
|
| Most efficient way to join two collections fetched from a database | 28 Mar 2008 15:56 GMT | 10 |
I have two tables in a database: invoices and invoiceItems. I need to fetch them from a database and create a collection of invoice entities, each of them associated whith its corresponding invoice items.
|
| DataTable.Select changes order of data | 28 Mar 2008 15:09 GMT | 3 |
If I am reading from a .csv file like so: da = new OleDbDataAdapter("SELECT * FROM " + Path.GetFileName(strFile),csvConnection); da.Fill(ds);
|
| Combobox databinding | 28 Mar 2008 14:58 GMT | 1 |
I have a dataset that is binding to a combobox of customers. When I am on consult mode I'd like to show all customers, and it is working correctly. Now, when I am including an order I would like to show just the customers who are active (it is a flag on the dataset). How can I do ...
|
| Ending a program while in Form_Load | 28 Mar 2008 14:44 GMT | 19 |
How do I end a program while in Form_Load? I tried both this.Close(), and Application.Exit(), but neither will just end the program there and then. Instead, both allow Form_Load to continue.
|
| DllImport two dimensional array | 28 Mar 2008 14:38 GMT | 1 |
I have external DLL with function: extern "C" __declspec(dllexport) void ByteTest(BYTE **arr, BYTE w, BYTE h) {
|