Speeple News Search

Search: |

Tags | Domains | Searches | Statistics | Options | Advanced Search

msdn.com » Feeds » Technical Learnings

Yearly Archives: 2008

Latest news from Technical Learnings

  1. Generating Wix file (*.wxs) from an MSI

    Jul 29, 2008

    For generating Wix file (*.wxs) from an existing MSI we can utilize dark.exe that comes with Wix. Following is the command for generating it C:\Program Files\Windows Installer XML v3\bin>dark.exe

  2. Ajax Instrumentation

    Jul 1, 2008

    1 Introduction .NET supports lot of API’s for doing instrumentation with help of trace, TraceSource classes etc, but there is nothing on the client side front in web apps to do the instrumentation. With so many

  3. Storage of XML Serialized objects in standard config files

    Jul 1, 2008

    Below article describes storage of XML serialized objects in to standard configuration files. In the sample code snippet Default flush is the class to which will be serilized and stored in the config file. Class

  4. Custom Trace Listener and Provider model

    Jun 11, 2008

    A listener is an object that receives the trace output and outputs it somewhere; that somewhere could be a window in your development environment, a file on your hard drive, a Windows Event log, a SQL Server or Oracle

  5. XML Serializable Dictionary

    Jun 11, 2008

    Typically generic dictionaries are not serializable. For serializing the generic dictionaries we can write custom xml serializable dictionary class by inheriting from Dictionary <TKey, TValue> and also