| Thread | Last Post | Replies |
|
| Generic MultiMap class / Set like the STL one... | 23 Aug 2006 18:00 GMT | 6 |
Hi, I'm looking for a generic version of a map container that acts similar like the multimap known from C++ / STL . <code>
|
| Compare Two Files Char By Char. | 23 Aug 2006 17:49 GMT | 2 |
HI guy I am using This Code For Compare Two Files at Button Click Event. if user select Data from richtextbox1 and click the Compare Button then it will match with second richtextbox2 data. this code is
|
| Connecting a BindingNavigator to a DataGridView bound to XML | 23 Aug 2006 16:47 GMT | 3 |
I have generated an XmlDocument, then bound it to a DataGridView (thanks to a pointer from PeterBromberg in a separate, recent posting). Now I want to connect a BindingNavigator, but my rudimentary attempt failed. In the Visual Designer I added a BindingSource bs, then a ...
|
| Manipulating XML and a DataGridView | 23 Aug 2006 16:39 GMT | 2 |
I have been trying to figure out how to use DataSets, BindingSources, DataGridViews, and XML together, but it is a challenge. I understand how to populate a DataGridView with XML basically as: DataSet ds = new DataSet();
|
| Updating existing XML attribute | 23 Aug 2006 15:59 GMT | 2 |
This should be easy, and it probably is, I just can't find anything on it. I have to build an XML Document object in memory, add some child nodes, save it, and then if another condition arises, reload the same xml document and append some more child nodes. And by the way, the ...
|
| c# - dynamically generated graphic file | 23 Aug 2006 15:40 GMT | 1 |
Is it possible (I hope it is...) to write a piece of software in C# (Visual Studio 2005) that will generate a graphic file? I mean to launch the application with a parameter (i.e a text) and the application will save on disk a .bmp file The input text should be written in the ...
|
| how do I handle linebreaks in Regex? | 23 Aug 2006 15:16 GMT | 7 |
I'm trying to do some regex in C# but for some reason linebreaks are causing my regex to not work. the test string goes like this: string ss = "<tagname
|
| DataGridView | 23 Aug 2006 14:01 GMT | 1 |
I'm trying to use a DataGridView to display the contents of a SQL view. At this point its easy. Where it gets complicated is that the view is created on the fly by a stored procedure so the number of rows and columns changes quite often because of data being entered into another
|
| MessageBox to show 2 lines | 23 Aug 2006 13:18 GMT | 3 |
How do I display 2 lines in the message box? eg Click Yes to continue. Click No to stop.
|
| Can I create an Interface which have a method have variate type parameters? | 23 Aug 2006 12:58 GMT | 2 |
Can I create an Interface which have a method have variate type parameters? I want create an Interface named IDataEditable which have two methods: LoadRecord and SaveRecord. As the LoadRecord have variate type parameters based on the record primary
|
| Panel Height | 23 Aug 2006 12:39 GMT | 12 |
Using .NET 1.1 Window Forms I would like to place over 400 pictures on a panel control one after another one so user can scroll through them, but each picture is up to 200 pixels in height that's over 80,000 pixels in total, but panel control can go up to
|
| How to delete all files under a folder | 23 Aug 2006 12:09 GMT | 3 |
How can I delete all files in a folder by C# for example, I want to delete all files under c:\Test
|
| Getting single treeview node by path | 23 Aug 2006 09:57 GMT | 2 |
heyho, guys! here's another question for you now: i built an iterator to get all the nodes with a certain attribute in an xml dom. it all looks like this (i'm using .NET framework 1.1) string xpath;
|
| Change property name of existing class | 23 Aug 2006 09:12 GMT | 5 |
Is there anyway to change the name or add a property to and existing class in .NET 1.1? For example if I have a property called Name and I want to change it to MyName.
|
| Abstract classes, static field values and reflection | 23 Aug 2006 09:09 GMT | 2 |
I've hit the wall with this one: Using System.Reflection.FieldInfo, I can retrieve the values of any field from an instantiated class and constant fields from abstract classes. However, it seems impossible to retrieve the values of static fields in an abstract class. Is there any ...
|