From 34cc1d518cb2cc3125b9524af7cc5667d6025447 Mon Sep 17 00:00:00 2001 From: Tyler Vigario Date: Mon, 17 Jul 2017 22:12:30 -0700 Subject: [PATCH] First Commit --- .gitignore | 223 ++++++++++++++++++ Download Free MS eBooks.sln | 28 +++ Download Free MS eBooks/App.config | 6 + .../Download Free MS eBooks.csproj | 89 +++++++ Download Free MS eBooks/MainForm.Designer.cs | 156 ++++++++++++ Download Free MS eBooks/MainForm.cs | 131 ++++++++++ Download Free MS eBooks/MainForm.resx | 126 ++++++++++ Download Free MS eBooks/Program.cs | 22 ++ .../Properties/AssemblyInfo.cs | 36 +++ .../Properties/Resources.Designer.cs | 71 ++++++ .../Properties/Resources.resx | 117 +++++++++ .../Properties/Settings.Designer.cs | 30 +++ .../Properties/Settings.settings | 7 + 13 files changed, 1042 insertions(+) create mode 100644 .gitignore create mode 100644 Download Free MS eBooks.sln create mode 100644 Download Free MS eBooks/App.config create mode 100644 Download Free MS eBooks/Download Free MS eBooks.csproj create mode 100644 Download Free MS eBooks/MainForm.Designer.cs create mode 100644 Download Free MS eBooks/MainForm.cs create mode 100644 Download Free MS eBooks/MainForm.resx create mode 100644 Download Free MS eBooks/Program.cs create mode 100644 Download Free MS eBooks/Properties/AssemblyInfo.cs create mode 100644 Download Free MS eBooks/Properties/Resources.Designer.cs create mode 100644 Download Free MS eBooks/Properties/Resources.resx create mode 100644 Download Free MS eBooks/Properties/Settings.Designer.cs create mode 100644 Download Free MS eBooks/Properties/Settings.settings diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4250fd3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,223 @@ +################# +## Custom +################# + +ObjectListView/ + + +################# +## Eclipse +################# + +*.pydevproject +.project +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath + + +################# +## Visual Studio +################# + +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results + +[Dd]ebug/ +[Rr]elease/ +x64/ +build/ +[Bb]in/ +[Oo]bj/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.log +*.scc + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +*.ncrunch* +.*crunch*.local.xml + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.Publish.xml +*.pubxml +*.publishproj + +# NuGet Packages Directory +## TODO: If you have NuGet Package Restore enabled, uncomment the next line +#packages/ + +# Windows Azure Build Output +csx +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +sql/ +*.Cache +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.[Pp]ublish.xml +*.pfx +*.publishsettings + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +App_Data/*.mdf +App_Data/*.ldf + +############# +## Windows detritus +############# + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Mac crap +.DS_Store + + +############# +## Python +############# + +*.py[cod] + +# Packages +*.egg +*.egg-info +dist/ +build/ +eggs/ +parts/ +var/ +sdist/ +develop-eggs/ +.installed.cfg + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox + +#Translations +*.mo + +#Mr Developer +.mr.developer.cfg diff --git a/Download Free MS eBooks.sln b/Download Free MS eBooks.sln new file mode 100644 index 0000000..7c68fa2 --- /dev/null +++ b/Download Free MS eBooks.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26430.16 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Download Free MS eBooks", "Download Free MS eBooks\Download Free MS eBooks.csproj", "{1E3F2D31-B300-46AC-8B1A-E171F89AD22F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ObjectListView2012", "ObjectListView\ObjectListView\ObjectListView2012.csproj", "{18FEDA0C-D147-4286-B39A-01204808106A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1E3F2D31-B300-46AC-8B1A-E171F89AD22F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1E3F2D31-B300-46AC-8B1A-E171F89AD22F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1E3F2D31-B300-46AC-8B1A-E171F89AD22F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1E3F2D31-B300-46AC-8B1A-E171F89AD22F}.Release|Any CPU.Build.0 = Release|Any CPU + {18FEDA0C-D147-4286-B39A-01204808106A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {18FEDA0C-D147-4286-B39A-01204808106A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {18FEDA0C-D147-4286-B39A-01204808106A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {18FEDA0C-D147-4286-B39A-01204808106A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Download Free MS eBooks/App.config b/Download Free MS eBooks/App.config new file mode 100644 index 0000000..88fa402 --- /dev/null +++ b/Download Free MS eBooks/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Download Free MS eBooks/Download Free MS eBooks.csproj b/Download Free MS eBooks/Download Free MS eBooks.csproj new file mode 100644 index 0000000..9440113 --- /dev/null +++ b/Download Free MS eBooks/Download Free MS eBooks.csproj @@ -0,0 +1,89 @@ + + + + + Debug + AnyCPU + {1E3F2D31-B300-46AC-8B1A-E171F89AD22F} + WinExe + Download_Free_MS_eBooks + Download Free MS eBooks + v4.5.2 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + Form + + + MainForm.cs + + + + + MainForm.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + {18FEDA0C-D147-4286-B39A-01204808106A} + ObjectListView2012 + + + + \ No newline at end of file diff --git a/Download Free MS eBooks/MainForm.Designer.cs b/Download Free MS eBooks/MainForm.Designer.cs new file mode 100644 index 0000000..4a65129 --- /dev/null +++ b/Download Free MS eBooks/MainForm.Designer.cs @@ -0,0 +1,156 @@ +namespace Download_Free_MS_eBooks +{ + partial class MainForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.objectListView1 = new BrightIdeasSoftware.ObjectListView(); + this.olvColumn2 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); + this.olvColumn1 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); + this.olvColumn3 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn())); + this.button1 = new System.Windows.Forms.Button(); + this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog(); + this.statusStrip1 = new System.Windows.Forms.StatusStrip(); + this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar(); + this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel(); + ((System.ComponentModel.ISupportInitialize)(this.objectListView1)).BeginInit(); + this.statusStrip1.SuspendLayout(); + this.SuspendLayout(); + // + // objectListView1 + // + this.objectListView1.AllColumns.Add(this.olvColumn2); + this.objectListView1.AllColumns.Add(this.olvColumn1); + this.objectListView1.AllColumns.Add(this.olvColumn3); + this.objectListView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.objectListView1.CellEditUseWholeCell = false; + this.objectListView1.CheckBoxes = true; + this.objectListView1.CheckedAspectName = "Active"; + this.objectListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { + this.olvColumn2, + this.olvColumn1, + this.olvColumn3}); + this.objectListView1.Cursor = System.Windows.Forms.Cursors.Default; + this.objectListView1.FullRowSelect = true; + this.objectListView1.Location = new System.Drawing.Point(12, 12); + this.objectListView1.Name = "objectListView1"; + this.objectListView1.ShowGroups = false; + this.objectListView1.Size = new System.Drawing.Size(727, 311); + this.objectListView1.TabIndex = 0; + this.objectListView1.UseCompatibleStateImageBehavior = false; + this.objectListView1.View = System.Windows.Forms.View.Details; + // + // olvColumn2 + // + this.olvColumn2.AspectName = "Active"; + this.olvColumn2.CheckBoxes = true; + this.olvColumn2.Text = "Active"; + this.olvColumn2.Width = 48; + // + // olvColumn1 + // + this.olvColumn1.AspectName = "URL"; + this.olvColumn1.Text = "URL"; + this.olvColumn1.Width = 190; + // + // olvColumn3 + // + this.olvColumn3.AspectName = "Name"; + this.olvColumn3.FillsFreeSpace = true; + this.olvColumn3.Text = "Name"; + this.olvColumn3.Width = 306; + // + // button1 + // + this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.button1.Location = new System.Drawing.Point(664, 329); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(75, 23); + this.button1.TabIndex = 1; + this.button1.Text = "Download"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // statusStrip1 + // + this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripProgressBar1, + this.toolStripStatusLabel1}); + this.statusStrip1.Location = new System.Drawing.Point(0, 360); + this.statusStrip1.Name = "statusStrip1"; + this.statusStrip1.Size = new System.Drawing.Size(751, 22); + this.statusStrip1.TabIndex = 2; + this.statusStrip1.Text = "statusStrip1"; + // + // toolStripProgressBar1 + // + this.toolStripProgressBar1.Name = "toolStripProgressBar1"; + this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16); + this.toolStripProgressBar1.Step = 1; + // + // toolStripStatusLabel1 + // + this.toolStripStatusLabel1.Name = "toolStripStatusLabel1"; + this.toolStripStatusLabel1.Size = new System.Drawing.Size(57, 17); + this.toolStripStatusLabel1.Text = "Waiting..."; + // + // MainForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(751, 382); + this.Controls.Add(this.statusStrip1); + this.Controls.Add(this.button1); + this.Controls.Add(this.objectListView1); + this.Name = "MainForm"; + this.ShowIcon = false; + this.Text = "We all love learning!"; + this.Load += new System.EventHandler(this.MainForm_Load); + ((System.ComponentModel.ISupportInitialize)(this.objectListView1)).EndInit(); + this.statusStrip1.ResumeLayout(false); + this.statusStrip1.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private BrightIdeasSoftware.ObjectListView objectListView1; + private BrightIdeasSoftware.OLVColumn olvColumn1; + private BrightIdeasSoftware.OLVColumn olvColumn2; + private System.Windows.Forms.Button button1; + private BrightIdeasSoftware.OLVColumn olvColumn3; + private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1; + private System.Windows.Forms.StatusStrip statusStrip1; + private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1; + private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1; + } +} + diff --git a/Download Free MS eBooks/MainForm.cs b/Download Free MS eBooks/MainForm.cs new file mode 100644 index 0000000..1aaad87 --- /dev/null +++ b/Download Free MS eBooks/MainForm.cs @@ -0,0 +1,131 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Windows.Forms; +using System.Net; + +namespace Download_Free_MS_eBooks +{ + public partial class MainForm : Form + { + private List urls; + private List downloads; + private WebClient wClient; + private string downloadLocation; + + public MainForm() + { + InitializeComponent(); + // + this.olvColumn1.AspectToStringConverter = delegate(object x) { + Uri url = (Uri)x; + return url.ToString(); + }; + } + + private void MainForm_Load(object sender, EventArgs e) + { + wClient = new WebClient(); + // + urls = downloadBookList(); + // + objectListView1.SetObjects(urls); + } + + private List downloadBookList() + { + string temp; + // + try + { + temp = wClient.DownloadString("https://drive.google.com/uc?export=download&id=0B-ULAF28Y63jY00wZEtWSmRTUWM"); + } + catch (WebException) + { + MessageBox.Show("File list URL is down. Look for update from developer of this software."); + return null; + } + // + string[] lines = temp.Split(new string[] { "\r\n", "\t\t" }, StringSplitOptions.None); + List urls = new List(); + // + foreach (string line in lines) + { + if (!String.IsNullOrEmpty(line) && line.Trim() != "MSFT eBooks") + { + try + { + string[] parts = line.Split(','); + urls.Add(new Download(new Uri(parts[0].Trim()), parts[1].Trim())); + } + catch(UriFormatException ex) + { + // Send error maybe + // Log it for sure + } + } + } + // + return urls; + } + + private void button1_Click(object sender, EventArgs e) + { + if (folderBrowserDialog1.ShowDialog() != DialogResult.OK) { return; } + downloadLocation = folderBrowserDialog1.SelectedPath; + downloads = new List(); + // + foreach (Download details in objectListView1.Objects) + { + if (details.Active) + { + downloads.Add(details); + } + } + // + toolStripProgressBar1.Maximum = downloads.Count; + // + wClient.DownloadFileCompleted += WClient_DownloadFileCompleted; + toolStripStatusLabel1.Text = "Downloading " + downloads[0].Name; + wClient.DownloadFileAsync(downloads[0].URL, downloadLocation + "\\" + downloads[0].Name); + downloads.Remove(downloads[0]); + } + + private void WClient_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) + { + toolStripStatusLabel1.Text = "Downloading " + downloads[0].Name; + wClient.DownloadFileAsync(downloads[0].URL, downloadLocation + "\\" + downloads[0].Name); + downloads.Remove(downloads[0]); + toolStripProgressBar1.PerformStep(); + } + } + + public class Download + { + private Uri _uri; + private bool _active = true; + private string _name = ""; + + public Download(Uri u, string n) + { + _uri = u; + _name = n; + } + + public Uri URL + { + get { return _uri; } + } + + public bool Active + { + get { return _active; } + set { _active = value; } + } + + public string Name + { + get { return _name; } + } + } +} diff --git a/Download Free MS eBooks/MainForm.resx b/Download Free MS eBooks/MainForm.resx new file mode 100644 index 0000000..47ae8a6 --- /dev/null +++ b/Download Free MS eBooks/MainForm.resx @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 186, 17 + + \ No newline at end of file diff --git a/Download Free MS eBooks/Program.cs b/Download Free MS eBooks/Program.cs new file mode 100644 index 0000000..b2af4bd --- /dev/null +++ b/Download Free MS eBooks/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Download_Free_MS_eBooks +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } +} diff --git a/Download Free MS eBooks/Properties/AssemblyInfo.cs b/Download Free MS eBooks/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2161ace --- /dev/null +++ b/Download Free MS eBooks/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Download Free MS eBooks")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Download Free MS eBooks")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("1e3f2d31-b300-46ac-8b1a-e171f89ad22f")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Download Free MS eBooks/Properties/Resources.Designer.cs b/Download Free MS eBooks/Properties/Resources.Designer.cs new file mode 100644 index 0000000..041dd69 --- /dev/null +++ b/Download Free MS eBooks/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Download_Free_MS_eBooks.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Download_Free_MS_eBooks.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Download Free MS eBooks/Properties/Resources.resx b/Download Free MS eBooks/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Download Free MS eBooks/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Download Free MS eBooks/Properties/Settings.Designer.cs b/Download Free MS eBooks/Properties/Settings.Designer.cs new file mode 100644 index 0000000..789acb8 --- /dev/null +++ b/Download Free MS eBooks/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Download_Free_MS_eBooks.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Download Free MS eBooks/Properties/Settings.settings b/Download Free MS eBooks/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/Download Free MS eBooks/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + +