| Thread | Last Post | Replies |
|
| Knowing an object implements an Interface | 30 Jun 2006 06:28 GMT | 3 |
Is there a quick way to know if a given object implements IComparable? (without casting or anything like that). Something that uses reflection? Thanks -Ron
|
| RE: Paging DataGrid | 30 Jun 2006 04:03 GMT | 2 |
Hi. Thanks for replying. Here is the full procedure I have, so, maybe it can give more details and help: private void changePage(object source, System.Web.UI.WebControls.DataGridPageChangedEventArgs e)
|
| TreeView DrawNode problem | 30 Jun 2006 03:55 GMT | 3 |
I have overridden the default DrawNode (OwnerDrawText mode) to allow me to draw an extra icon at the front of the text block, while still using the built-in icon list for another icon. The problem I am having is that when a node is selected it snips the text to the length of the ...
|
| Missing ReadOnlyDictionary<>? | 30 Jun 2006 03:42 GMT | 4 |
So did the .NET 2.0 working group just run out of steam before it got to a ReadOnlyDictionary<> wrapper? I am publishing events containing a SortedList<>, and obviously I don't want event handlers to be able to do anything to the collection at the same time
|
| IEnumerable is strange | 30 Jun 2006 01:51 GMT | 5 |
Dear mpdls, here is a simple example of an IEnumerable that generates integers: It works, but I have only a vague idea of what's
|
| Changing row height in a data grid without changing font size | 30 Jun 2006 00:20 GMT | 1 |
How do you change the row height in a data grid - I do not want to increase the height by changing my font size. My product is a touch screen so I have to make the row height large enought for a finger press.
|
| creating a type from a string | 29 Jun 2006 23:37 GMT | 1 |
If i have this value in a string "System.Int32", how can i get that into a variable with the type of Type? string s = "System.Int32"; Type t = //do something here
|
| Can I use different data sources for each row in a given column (column type dropdownlist) | 29 Jun 2006 22:49 GMT | 2 |
I have a aspx application written in c#. I have created a datagrid control on the page. One of the columns in the control is a dropdownlist. I would like to set the data source of the dropdownlist to a different
|
| Stored procedure | 29 Jun 2006 22:36 GMT | 1 |
Is there a sample code I can use to call a stored procedure which has input and output paramerts ?
|
| Duplicate rows in datagrid! | 29 Jun 2006 21:46 GMT | 1 |
I have two datasource combained to form a datagrid. I am merging the 2 dataset to a new dataset to display them in a datagrid. Is there an option remove duplicates during merging?? Thanks.
|
| app.config | 29 Jun 2006 21:40 GMT | 5 |
How can I read and modify information in the xml file app.config? Thank you very much.
|
| Multiple Inheritance w/ Managed C++, how can you access an implementing classes properties after casting it to the base interface? | 29 Jun 2006 21:28 GMT | 2 |
I have three interfaces, lets call them General, Client, Server. public interface General { public Value{get;}
|
| using params with out. | 29 Jun 2006 21:14 GMT | 3 |
Iam facing a peculiar problem, where i would like to parse the passed parameters and would like to figure out which ones are marked 'out'. For example the method signature is public DataSet SearchItems(string procname, params objects[] values)
|
| DateTime question year, month, day from 38896 | 29 Jun 2006 21:02 GMT | 6 |
Any idea how to find the year, month and day from (Int32) 38896? 38896 presents 6/28/2006 in excel. The dates in the database are (all) stored as Int32's corresponding to the way dates are handled in excel excluding time. Thanks In Advance
|
| Ping vs. SocketException | 29 Jun 2006 21:02 GMT | 3 |
hi NG ! My app knows the IP address of a remote computer from App.exe.config. What's the best way to check if this pc in on the network ? Ping ?
|