| Thread | Last Post | Replies |
|
| XSL - problem with finding CSS file | 27 Jul 2008 09:45 GMT | 3 |
I have a piece of code that looks like this: XPathNavigator l_nav = xml_document.DocumentElement.CreateNavigator(); XslCompiledTransform l_xslt = new XslCompiledTransform();
|
| Using Interfaces with ObjectDataSources | 27 Jul 2008 08:14 GMT | 1 |
I have an ObjectDataSource that returns instances of an interface. The Select works as expected, but after editing the UI (web) and trying to save the object I get the following error: [MissingMethodException: Cannot create an instance of an interface.]
|
| is there anything in VC can do the job like Reflection in .NET | 27 Jul 2008 08:08 GMT | 2 |
is there anything in VC can do the job like Reflection in .NET? i mean by setting some attribute and get runtime information?
|
| How can we generate a fixed length text file in C#? | 27 Jul 2008 02:51 GMT | 6 |
I have to generate a fixed length text file.I have a file formats like fields details as well as its length and position.what actually i have to do that i will get the data from the databas and then i need to create a fixed length flat file as per format.so please give me a ...
|
| Object garbage collection of events | 27 Jul 2008 01:47 GMT | 11 |
Object garbage collection of events I can not help wondering how the garbage collection system handles events. If I release all references to an object that has a void that an event
|
| What cryptoalgorithm supports CipherMode.CTS? | 26 Jul 2008 18:36 GMT | 2 |
Im wondering if there are any cryptoalgorithms (like Rijndael, AES, TripleDES) which support CipherMode.CTS... All the ones ive tried it on (Rijndael, AES, TripleDES, DES) just give me an error saying its not supported for this algorithm...
|
| wan based using vb.net | 26 Jul 2008 12:15 GMT | 1 |
i am devloping a application which is linked through WAN what are pr-requisites ? how should i connect to sql server
|
| implementation and interface inheritance <9YadndVyFOoSUhXVnZ2dnUVZ_jWdnZ2d@posted.southwestresearchinstitute> | 26 Jul 2008 11:26 GMT | 1 |
When a class (type) is derived from another class(type) such that it inherits all the members of the base type it is Implementation Inheritance. When a type (class or a struct) inherits only the signatures of the functions from another type it is Interface Inheritance. In general ...
|
| Radio button checked by itself | 26 Jul 2008 10:28 GMT | 3 |
I have a form that has 2 sets of radiobuttons. As it happens I created 1 radiobutton and then copied it a pasted it 4 times. I have 4 radiobuttons split up into 2 groupboxes (2 radiobuttons each). When I first start the program none of the radiobuttons are checked.
|
| Changing the data type of dataadapter? | 26 Jul 2008 09:50 GMT | 1 |
Given this: SqlDataAdapter sqlAd = new SqlDataAdapter(sql, sqlCon); sqlAd.Fill(ds); I find that the data types that are created are not what I want...
|
| Class structure question - how to inherit properly? | 26 Jul 2008 09:31 GMT | 2 |
Suppose there is the following class structure. class S {...} class A : S {...} class B : S {...}
|
| adorner Z order | 26 Jul 2008 01:09 GMT | 6 |
I asked this before in a different discussion group without luck. Perhaps someone here can help me. What I need to do is change the Z order of all adorners in a Canvas. What I have is many UserControls in a Canvas. Each has an adorner. When I change the Z-order of the user ...
|
| XML Serialization | 25 Jul 2008 23:53 GMT | 7 |
I m trying to serialize the object of the serializable class DsExportDatabase. But XmlSerializer serializer = new XmlSerializer(typeof(DsExportDatabase)); This line throws me exception that "There was an error reflecting type "
|
| IE Printing HTML file through ExecWB - print dialog comming up behind my app - help! | 25 Jul 2008 23:45 GMT | 3 |
I have implemented a printing scenario where an html file is printed using the the following code: public void PrintHtmlFile(string url) {
|
| Question about try/catch for null variables | 25 Jul 2008 23:28 GMT | 2 |
Is there a better way (faster, cleaner) of checking for a null than the below? I tried various other ways (commented out) and they give run-time errors. treeView1.Node[999] does not exist, it's a null.
|