Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

computermage

@computermage
About
Posts
8
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Think You're Smarter Than NASA?
    C computermage

    Played this game, but it's too easy. I need more challenging scientific games, like Fold.It

    All the Best! Sergey Kuznetsov. Software Development and Software Architecture addict since 1983.

    The Lounge html design sysadmin question

  • Windows 8: slow growth and their OS boss jumps ship.
    C computermage

    Completely agree.

    All the Best! Sergey Kuznetsov. Software Development and Software Architecture addict since 1983.

    The Lounge sharepoint mobile com announcement

  • Windows 8: slow growth and their OS boss jumps ship.
    C computermage

    I use Windows 8 for half a year on my Dell Inspiron Duo and I really like it a lot. It is snappy, and works even faster than Windows 7 I had on that convertible netbook. I am about to buy upgrade licence to finalize the settings.

    All the Best! Sergey Kuznetsov. Software Development and Software Architecture addict since 1983.

    The Lounge sharepoint mobile com announcement

  • Why MSDN?
    C computermage

    Because that price difference is already in the subscription price.

    All the Best! Sergey Kuznetsov. Software Development and Software Architecture addict since 1983.

    The Lounge business question

  • .NET Source....
    C computermage

    But you have to use 7-Zip to extract source.zip from .msi file and then extract source file from source.zip. Then my script will do the rest.

    All the Best! Sergey Kuznetsov. Software Development and Software Architecture addict since 1983.

    The Lounge csharp asp-net dotnet wpf wcf

  • .NET Source....
    C computermage

    Easily! Here is the XAML:

    <Window x:Class="DotNETExtractor.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="386" Width="1077">
    <Grid>
    <TextBox Height="23" Name="inFilePath" VerticalAlignment="Top" Margin="12,2,0,0" Text="C:\Sergey\DotNET\Dotnetfx_40_source" HorizontalAlignment="Left" Width="377" />
    <TextBox Height="23" Margin="395,2,0,0" Name="outPath" VerticalAlignment="Top" Text="C:\Sergey\DotNET" HorizontalAlignment="Left" Width="357" />
    <Button Height="23" HorizontalAlignment="Right" Margin="0,1,141,0" Name="extractButton" VerticalAlignment="Top" Width="145" Click="extractButton_Click">Extract</Button>
    <ListBox Margin="12,30,12,12" Name="infoBox" />
    <Button Content="Cancel" Height="23" Margin="0,1,12,0" Name="cancelButton" VerticalAlignment="Top" HorizontalAlignment="Right" Width="123" Click="cancelButton_Click" />
    </Grid>
    </Window>

    Here is the code:

    using System;
    using System.IO;
    using System.Threading;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Linq;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;

    namespace DotNETExtractor
    {
    /// <summary>
    /// Interaction logic for Window1.xaml
    /// </summary>
    public partial class Window1 : Window
    {
    BackgroundWorker worker = new BackgroundWorker();

        public Window1()
        {
            InitializeComponent();
    
            worker.DoWork += new DoWorkEventHandler(worker\_DoWork);
            worker.ProgressChanged += new ProgressChangedEventHandler(worker\_ProgressChanged);
            worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(worker\_RunWorkerCompleted);
            worker.Worker
    
    The Lounge csharp asp-net dotnet wpf wcf

  • .NET Source....
    C computermage

    I've got .NET source code 18 months ago from the link you provided and built a simple console application that extracts the code from the file and saves it in the proper locations. Because of that I saved countless hours of finding "What's can be wrong with this freaking function!?" :) WPF DataGrid is the best example :)

    All the Best! Sergey Kuznetsov. Software Development and Software Architecture addict since 1983.

    The Lounge csharp asp-net dotnet wpf wcf

  • Another language to learn!
    C computermage

    I prefer just Visual D plugin with plain old D 2.0 :)

    The Lounge javascript question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups