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.
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.
Completely agree.
All the Best! Sergey Kuznetsov. Software Development and Software Architecture addict since 1983.
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.
Because that price difference is already in the subscription price.
All the Best! Sergey Kuznetsov. Software Development and Software Architecture addict since 1983.
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.
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
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.
I prefer just Visual D plugin with plain old D 2.0 :)