enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Discussions - CodeProject

    www.codeproject.com/Messages/5255473/Re-How-to-convert...

    CodeProject is currently in read-only mode. During this time discussion forums will not, unfortunately, be available.

  3. Converting WinForms => Web Forms using CodeDom - CodeProject

    www.codeproject.com/articles/9307/converting-winforms...

    If you simply call Convert without bothering about them, the property values are read from the form or control passed to the method as the first argument. Using the sample The demo project accompanying this article takes a simple Windows Form and converts it to both a Web Form (as shown at the top of this page) and a Web Forms user control.

  4. C# Convert DataTable to List of Objects Dynamically - CodeProject

    www.codeproject.com/Articles/850519/Csharp-Convert-Data...

    The idea is pretty simple. Fill the object with the related field in the DataRow based on the field name, but to be able to do it smoothly, you need to have the DataTable column names match the class properties names and that’s about it. /// <summary> /// Converts datatable to list<T> dynamically.

  5. Migrating ASMX Services to WCF Services - CodeProject

    www.codeproject.com/Articles/312490/Migrating-ASMX...

    Solution 1. Making the ASMX and WCF layers act as wrapper layers to the actual functional implementation of the contract. That means that at any time two separate endpoints will be exposed, that will redirect calls to a common function. All existing clients will connect to the old endpoint and all new clients to the new one.

  6. How to convert between (most) audio formats in .NET - CodeProject

    www.codeproject.com/articles/501521/how-to-convert-between...

    using (var converter = WaveFormatConversionStream.CreatePcmStream(reader)) {. WaveFileWriter.CreateWaveFile("pcm.wav", converter); Fairly simple, and in fact, this is all you need to convert pretty much any WAV file containing compressed audio to PCM in NAudio.

  7. XSD Tools in .NET8 – Part8 – LinqToXsdCore - Advanced -...

    www.codeproject.com/Articles/5388629/XSD-Tools-in-NET8...

    Download source; 1 Doing XML and XSD related work in .NET8. I was recently doing some work related to XML and XSD processing in .NET8 environment and created several proof-of-concept applications to evaluate the tools available.

  8. XSD Tools in .NET8 – Part6 – XmlSchemaClassGenerator - Advanced

    www.codeproject.com/Articles/5388549/XSD-Tools-in-NET8...

    Download source; 1 Doing XML and XSD related work in .NET8. I was recently doing some work related to XML and XSD processing in .NET8 environment and created several proof-of-concept applications to evaluate the tools available.

  9. Upgrading VB6 to VB.NET - CodeProject

    www.codeproject.com/articles/31960/upgrading-vb6-to-vb-net

    From the File menu, select Open | Project/Solution. - Navigate to the VB6 project that you want to upgrade, and select it. - The Upgrade Wizard will start automatically. - Click "Next" through each window of the Wizard until the Wizard begins the conversion.

  10. Convert XML to C# Object - CodeProject

    www.codeproject.com/Articles/1163664/Convert-XML-to-Csharp...

    For completeness, the article also demonstrates how to do the reverese i.e to convert a simple or complex C# object into XML. Background In some cases it can be much easier to work with a business object instance or a list of business object instances in C# than it is to traverse an XMLDocument object containing business information.

  11. What is Try-With-Resource in Java and How is it Different from...

    www.codeproject.com/Articles/5388650/What-is-Try-With...

    In Java, resource management is a crucial aspect of writing efficient and error-free code. Two common approaches to handling resources and exceptions are the traditional try-catch-finally block and the more modern try-with-resource statement.