Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ren85 committed Dec 19, 2012
0 parents commit 0d42236
Show file tree
Hide file tree
Showing 116 changed files with 37,333 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Requires .net 4.0
I just took it from somewhere else when this was an open source project and cleaned it a bit. Works for me.
Binary file added binaries/AnjLab.FX.dll
Binary file not shown.
Binary file added binaries/Microsoft.AnalysisServices.DLL
Binary file not shown.
Binary file added binaries/Microsoft.SqlServer.ConnectionInfo.dll
Binary file not shown.
Binary file added binaries/Microsoft.SqlServer.Smo.dll
Binary file not shown.
Binary file added binaries/Microsoft.SqlServer.SmoEnum.dll
Binary file not shown.
Binary file added binaries/Microsoft.SqlServer.SqlEnum.dll
Binary file not shown.
Binary file added binaries/SqlExpressProfiler.exe
Binary file not shown.
47 changes: 47 additions & 0 deletions binaries/SqlExpressProfiler.exe.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="AnfiniL.SqlExpressProfiler.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
</sectionGroup>
</configSections>
<userSettings>
<AnfiniL.SqlExpressProfiler.Properties.Settings>
<setting name="EnableAutoScroll" serializeAs="String">
<value>False</value>
</setting>
<setting name="UpdatesLastCheck" serializeAs="String">
<value>2007-08-01</value>
</setting>
<setting name="LastServerName" serializeAs="String">
<value>.\sqlexpress</value>
</setting>
<setting name="LastUserName" serializeAs="String">
<value>sa</value>
</setting>
<setting name="LastWindowsAuth" serializeAs="String">
<value>False</value>
</setting>
<setting name="AutoResizeColumns" serializeAs="String">
<value>True</value>
</setting>
<setting name="TraceEvents" serializeAs="String">
<value/>
</setting>
<setting name="Password" serializeAs="String">
<value/>
</setting>
<setting name="SavePassword" serializeAs="String">
<value>False</value>
</setting>
</AnfiniL.SqlExpressProfiler.Properties.Settings>
</userSettings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.SqlServer.ConnectionInfo" publicKeyToken="89845DCD8080CC91" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
Binary file added binaries/SqlServerTools.dll
Binary file not shown.
Binary file added binaries/TabStrip.dll
Binary file not shown.
8 changes: 8 additions & 0 deletions source/ProductInfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8" ?>
<version>
<start-date>06/12/2007</start-date>
<major-version>0</major-version>
<minor-version>1</minor-version>
<company>AnjLab</company>
<product>AnjLab Sql Express Profiler</product>
</version>
107 changes: 107 additions & 0 deletions source/SqlExpressProfiler/Controls/AboutBox.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;

namespace AnfiniL.SqlExpressProfiler.Controls
{
partial class AboutBox : Form
{
public AboutBox()
{
InitializeComponent();

// Initialize the AboutBox to display the product information from the assembly information.
// Change assembly information settings for your application through either:
// - Project->Properties->Application->Assembly Information
// - AssemblyInfo.cs
this.Text = String.Format("About {0}", AssemblyTitle);
this.labelProductName.Text = AssemblyProduct;
this.labelVersion.Text = String.Format("Version {0}", UpdatesChecker.CurrentAssemblyVersion);
this.labelCopyright.Text = AssemblyCopyright;
this.labelCompanyName.Text = AssemblyCompany;
this.textBoxDescription.Text = AssemblyDescription;
}

#region Assembly Attribute Accessors

public string AssemblyTitle
{
get
{
// Get all Title attributes on this assembly
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
// If there is at least one Title attribute
if (attributes.Length > 0)
{
// Select the first one
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0];
// If it is not an empty string, return it
if (titleAttribute.Title != "")
return titleAttribute.Title;
}
// If there was no Title attribute, or if the Title attribute was the empty string, return the .exe name
return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase);
}
}

public string AssemblyDescription
{
get
{
// Get all Description attributes on this assembly
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false);
// If there aren't any Description attributes, return an empty string
if (attributes.Length == 0)
return "";
// If there is a Description attribute, return its value
return ((AssemblyDescriptionAttribute)attributes[0]).Description;
}
}

public string AssemblyProduct
{
get
{
// Get all Product attributes on this assembly
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false);
// If there aren't any Product attributes, return an empty string
if (attributes.Length == 0)
return "";
// If there is a Product attribute, return its value
return ((AssemblyProductAttribute)attributes[0]).Product;
}
}

public string AssemblyCopyright
{
get
{
// Get all Copyright attributes on this assembly
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false);
// If there aren't any Copyright attributes, return an empty string
if (attributes.Length == 0)
return "";
// If there is a Copyright attribute, return its value
return ((AssemblyCopyrightAttribute)attributes[0]).Copyright;
}
}

public string AssemblyCompany
{
get
{
// Get all Company attributes on this assembly
object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false);
// If there aren't any Company attributes, return an empty string
if (attributes.Length == 0)
return "";
// If there is a Company attribute, return its value
return ((AssemblyCompanyAttribute)attributes[0]).Company;
}
}
#endregion
}
}
187 changes: 187 additions & 0 deletions source/SqlExpressProfiler/Controls/AboutBox.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0d42236

Please sign in to comment.