Initial Commit (Imported to Visual Studio 2015)
also changed some icons
This commit is contained in:
commit
38852562c6
28 changed files with 3957 additions and 0 deletions
BIN
.vs/md5Convert/v14/.suo
Normal file
BIN
.vs/md5Convert/v14/.suo
Normal file
Binary file not shown.
BIN
encrypted.ico
Normal file
BIN
encrypted.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
24
md5Convert.sln
Normal file
24
md5Convert.sln
Normal file
|
@ -0,0 +1,24 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.24720.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "md5Convert", "md5Convert\md5Convert.vbproj", "{6B9384F8-BA3A-4942-854B-AC5EC752EB60}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{6B9384F8-BA3A-4942-854B-AC5EC752EB60}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{6B9384F8-BA3A-4942-854B-AC5EC752EB60}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{6B9384F8-BA3A-4942-854B-AC5EC752EB60}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
|
||||
{6B9384F8-BA3A-4942-854B-AC5EC752EB60}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{6B9384F8-BA3A-4942-854B-AC5EC752EB60}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{6B9384F8-BA3A-4942-854B-AC5EC752EB60}.Release|Any CPU.Deploy.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
BIN
md5Convert.v12.suo
Normal file
BIN
md5Convert.v12.suo
Normal file
Binary file not shown.
BIN
md5Convert/.vs/md5Convert/v14/.suo
Normal file
BIN
md5Convert/.vs/md5Convert/v14/.suo
Normal file
Binary file not shown.
1
md5Convert/ApplicationEvents.vb
Normal file
1
md5Convert/ApplicationEvents.vb
Normal file
|
@ -0,0 +1 @@
|
|||
|
108
md5Convert/MainForm.Designer.vb
generated
Normal file
108
md5Convert/MainForm.Designer.vb
generated
Normal file
|
@ -0,0 +1,108 @@
|
|||
'
|
||||
' Erstellt mit SharpDevelop.
|
||||
' Benutzer: dominic
|
||||
' Datum: 12.01.2010
|
||||
' Zeit: 02:36
|
||||
'
|
||||
' Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern.
|
||||
'
|
||||
Partial Class MainForm
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
''' <summary>
|
||||
''' Designer variable used to keep track of non-visual components.
|
||||
''' </summary>
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
''' <summary>
|
||||
''' Disposes resources used by the form.
|
||||
''' </summary>
|
||||
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
If disposing Then
|
||||
If components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
End If
|
||||
MyBase.Dispose(disposing)
|
||||
End Sub
|
||||
|
||||
''' <summary>
|
||||
''' This method is required for Windows Forms designer support.
|
||||
''' Do not change the method contents inside the source code editor. The Forms designer might
|
||||
''' not be able to load this method if it was changed manually.
|
||||
''' </summary>
|
||||
Private Sub InitializeComponent()
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainForm))
|
||||
Me.txtString = New System.Windows.Forms.TextBox()
|
||||
Me.txtHash = New System.Windows.Forms.TextBox()
|
||||
Me.btnClose = New System.Windows.Forms.Button()
|
||||
Me.btnAbout = New System.Windows.Forms.Button()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'txtString
|
||||
'
|
||||
Me.txtString.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||
Me.txtString.Location = New System.Drawing.Point(14, 14)
|
||||
Me.txtString.Name = "txtString"
|
||||
Me.txtString.Size = New System.Drawing.Size(455, 21)
|
||||
Me.txtString.TabIndex = 1
|
||||
Me.txtString.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
|
||||
'
|
||||
'txtHash
|
||||
'
|
||||
Me.txtHash.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||
Me.txtHash.Location = New System.Drawing.Point(14, 44)
|
||||
Me.txtHash.Name = "txtHash"
|
||||
Me.txtHash.ReadOnly = True
|
||||
Me.txtHash.Size = New System.Drawing.Size(455, 21)
|
||||
Me.txtHash.TabIndex = 10
|
||||
Me.txtHash.TabStop = False
|
||||
Me.txtHash.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
|
||||
'
|
||||
'btnClose
|
||||
'
|
||||
Me.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel
|
||||
Me.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
||||
Me.btnClose.Location = New System.Drawing.Point(14, 130)
|
||||
Me.btnClose.Name = "btnClose"
|
||||
Me.btnClose.Size = New System.Drawing.Size(455, 35)
|
||||
Me.btnClose.TabIndex = 3
|
||||
Me.btnClose.Text = "&Close Program"
|
||||
Me.btnClose.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btnAbout
|
||||
'
|
||||
Me.btnAbout.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
||||
Me.btnAbout.Location = New System.Drawing.Point(14, 89)
|
||||
Me.btnAbout.Name = "btnAbout"
|
||||
Me.btnAbout.Size = New System.Drawing.Size(455, 35)
|
||||
Me.btnAbout.TabIndex = 2
|
||||
Me.btnAbout.Text = "&About"
|
||||
Me.btnAbout.UseVisualStyleBackColor = True
|
||||
'
|
||||
'MainForm
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.CancelButton = Me.btnClose
|
||||
Me.ClientSize = New System.Drawing.Size(483, 179)
|
||||
Me.Controls.Add(Me.btnClose)
|
||||
Me.Controls.Add(Me.txtHash)
|
||||
Me.Controls.Add(Me.txtString)
|
||||
Me.Controls.Add(Me.btnAbout)
|
||||
Me.Font = New System.Drawing.Font("Arial", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.MaximizeBox = False
|
||||
Me.Name = "MainForm"
|
||||
Me.Text = "md5Convert"
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
Private txtHash As System.Windows.Forms.TextBox
|
||||
Private WithEvents btnAbout As System.Windows.Forms.Button
|
||||
Private WithEvents btnClose As System.Windows.Forms.Button
|
||||
Private WithEvents txtString As System.Windows.Forms.TextBox
|
||||
End Class
|
124
md5Convert/MainForm.de-AT.resx
Normal file
124
md5Convert/MainForm.de-AT.resx
Normal file
|
@ -0,0 +1,124 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>416, 165</value>
|
||||
</data>
|
||||
</root>
|
1253
md5Convert/MainForm.resx
Normal file
1253
md5Convert/MainForm.resx
Normal file
File diff suppressed because it is too large
Load diff
59
md5Convert/MainForm.vb
Normal file
59
md5Convert/MainForm.vb
Normal file
|
@ -0,0 +1,59 @@
|
|||
'
|
||||
' Erstellt mit SharpDevelop.
|
||||
' Benutzer: dominic
|
||||
' Datum: 12.01.2010
|
||||
' Zeit: 02:36
|
||||
'
|
||||
' Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern.
|
||||
'
|
||||
Imports System.Security.Cryptography
|
||||
Imports System.Text
|
||||
|
||||
Public Partial Class MainForm
|
||||
Public Sub New()
|
||||
' The Me.InitializeComponent call is required for Windows Forms designer support.
|
||||
Me.InitializeComponent()
|
||||
End Sub
|
||||
|
||||
' Funktion MD5StringHash geklaut bei:
|
||||
' http://dotnet-snippets.de/dns/vbnet-den-md5-hash-eines-strings-ermitteln-SID75.aspx
|
||||
Public Function MD5StringHash(ByVal strString As String) As String
|
||||
Dim MD5 As New MD5CryptoServiceProvider
|
||||
Dim Data As Byte()
|
||||
Dim Result As Byte()
|
||||
Dim Res As String = ""
|
||||
Dim Tmp As String = ""
|
||||
|
||||
Data = Encoding.ASCII.GetBytes(strString)
|
||||
Result = MD5.ComputeHash(Data)
|
||||
For i As Integer = 0 To Result.Length - 1
|
||||
Tmp = Hex(Result(i))
|
||||
If Len(Tmp) = 1 Then Tmp = "0" & Tmp
|
||||
Res += Tmp
|
||||
Next
|
||||
Return Res
|
||||
End Function
|
||||
|
||||
Sub BtnConvertClick(sender As Object, e As EventArgs)
|
||||
txtHash.Text = MD5StringHash(txtString.Text)
|
||||
End Sub
|
||||
|
||||
Sub BtnAboutClick(ByVal sender As Object, ByVal e As EventArgs) Handles btnAbout.Click
|
||||
'frmAbout.ActiveForm.Activate
|
||||
Dim Obj As New frmAbout()
|
||||
Obj.ShowDialog()
|
||||
End Sub
|
||||
|
||||
Sub BtnCloseClick(ByVal sender As Object, ByVal e As EventArgs) Handles btnClose.Click
|
||||
System.Windows.Forms.Application.Exit()
|
||||
End Sub
|
||||
|
||||
Sub TxtStringTextChanged(ByVal sender As Object, ByVal e As EventArgs) Handles txtString.TextChanged
|
||||
' Ausgabe mit Kleinbuchstaben (.ToLower())
|
||||
On Error GoTo ShowError
|
||||
txtHash.Text = MD5StringHash(txtString.Text).ToLower()
|
||||
Exit Sub
|
||||
ShowError:
|
||||
MessageBox.Show(Err.Description, "An error occured", MessageBoxButtons.OK, MessageBoxIcon.Error)
|
||||
End Sub
|
||||
End Class
|
38
md5Convert/Properties/Application.Designer.vb
generated
Normal file
38
md5Convert/Properties/Application.Designer.vb
generated
Normal file
|
@ -0,0 +1,38 @@
|
|||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Dieser Code wurde von einem Tool generiert.
|
||||
' Laufzeitversion:4.0.30319.42000
|
||||
'
|
||||
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
' der Code erneut generiert wird.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
'HINWEIS: Diese Datei wird automatisch generiert und darf nicht direkt bearbeitet werden. Wenn Sie Änderungen vornehmen möchten,
|
||||
' oder bei in dieser Datei auftretenden Buildfehlern wechseln Sie zum Projekt-Designer.
|
||||
' (Wechseln Sie dazu zu den Projekteigenschaften, oder doppelklicken Sie auf den Knoten "Mein Projekt" im
|
||||
' Projektmappen-Explorer). Nehmen Sie auf der Registerkarte "Anwendung" entsprechende Änderungen vor.
|
||||
'
|
||||
Partial Friend Class MyApplication
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
Public Sub New()
|
||||
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
|
||||
Me.IsSingleInstance = false
|
||||
Me.EnableVisualStyles = true
|
||||
Me.SaveMySettingsOnExit = false
|
||||
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterAllFormsClose
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
Protected Overrides Sub OnCreateMainForm()
|
||||
Me.MainForm = Global.md5Convert.MainForm
|
||||
End Sub
|
||||
End Class
|
||||
End Namespace
|
10
md5Convert/Properties/Application.myapp
Normal file
10
md5Convert/Properties/Application.myapp
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<MySubMain>true</MySubMain>
|
||||
<MainForm>MainForm</MainForm>
|
||||
<SingleInstance>false</SingleInstance>
|
||||
<ShutdownMode>1</ShutdownMode>
|
||||
<EnableVisualStyles>true</EnableVisualStyles>
|
||||
<AuthenticationMode>0</AuthenticationMode>
|
||||
<SaveMySettingsOnExit>false</SaveMySettingsOnExit>
|
||||
</MyApplicationData>
|
35
md5Convert/Properties/AssemblyInfo.vb
Normal file
35
md5Convert/Properties/AssemblyInfo.vb
Normal file
|
@ -0,0 +1,35 @@
|
|||
Imports System.Resources
|
||||
|
||||
Imports System.Reflection
|
||||
Imports System.Runtime.CompilerServices
|
||||
Imports System.Runtime.InteropServices
|
||||
|
||||
' Information about this assembly is defined by the following
|
||||
' attributes.
|
||||
'
|
||||
' change them to the information which is associated with the assembly
|
||||
' you compile.
|
||||
|
||||
<Assembly: AssemblyTitle("MD5 Convert")>
|
||||
<Assembly: AssemblyDescription("MD5 Hash Generator (while typing)")>
|
||||
<Assembly: AssemblyConfiguration("")>
|
||||
<Assembly: AssemblyCompany("http://tmsn.at")>
|
||||
<Assembly: AssemblyProduct("")>
|
||||
<Assembly: AssemblyCopyright("2010,2016 Dominic Reich")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
<Assembly: AssemblyCulture("")>
|
||||
|
||||
' This sets the default COM visibility of types in the assembly to invisible.
|
||||
' If you need to expose a type to COM, use <ComVisible(true)> on that type.
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
' The assembly version has following format :
|
||||
'
|
||||
' Major.Minor.Build.Revision
|
||||
'
|
||||
' You can specify all values by your own or you can build default build and revision
|
||||
' numbers with the '*' character (the default):
|
||||
|
||||
<Assembly: AssemblyVersion("1")>
|
||||
|
||||
<Assembly: NeutralResourcesLanguageAttribute("")>
|
73
md5Convert/Properties/Resources.Designer.vb
generated
Normal file
73
md5Convert/Properties/Resources.Designer.vb
generated
Normal file
|
@ -0,0 +1,73 @@
|
|||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Dieser Code wurde von einem Tool generiert.
|
||||
' Laufzeitversion:4.0.30319.42000
|
||||
'
|
||||
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
' der Code erneut generiert wird.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
|
||||
Namespace My.Resources
|
||||
|
||||
'Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
|
||||
'-Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
||||
'Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
||||
'mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
|
||||
'''<summary>
|
||||
''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
'''</summary>
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||
Friend Module Resources
|
||||
|
||||
Private resourceMan As Global.System.Resources.ResourceManager
|
||||
|
||||
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||
|
||||
'''<summary>
|
||||
''' Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||
Get
|
||||
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("md5Convert.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
''' Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||
Get
|
||||
Return resourceCulture
|
||||
End Get
|
||||
Set
|
||||
resourceCulture = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Icon ähnlich wie (Symbol).
|
||||
'''</summary>
|
||||
Friend ReadOnly Property encrypted() As System.Drawing.Icon
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("encrypted", resourceCulture)
|
||||
Return CType(obj,System.Drawing.Icon)
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
124
md5Convert/Properties/Resources.resx
Normal file
124
md5Convert/Properties/Resources.resx
Normal file
|
@ -0,0 +1,124 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="encrypted" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\encrypted.ico;System.Drawing.Icon, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
</root>
|
73
md5Convert/Properties/Settings.Designer.vb
generated
Normal file
73
md5Convert/Properties/Settings.Designer.vb
generated
Normal file
|
@ -0,0 +1,73 @@
|
|||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.36241
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0"), _
|
||||
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Partial Friend NotInheritable Class MySettings
|
||||
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||
|
||||
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
|
||||
|
||||
#Region "My.Settings Auto-Save Functionality"
|
||||
#If _MyType = "WindowsForms" Then
|
||||
Private Shared addedHandler As Boolean
|
||||
|
||||
Private Shared addedHandlerLockObject As New Object
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
|
||||
If My.Application.SaveMySettingsOnExit Then
|
||||
My.Settings.Save()
|
||||
End If
|
||||
End Sub
|
||||
#End If
|
||||
#End Region
|
||||
|
||||
Public Shared ReadOnly Property [Default]() As MySettings
|
||||
Get
|
||||
|
||||
#If _MyType = "WindowsForms" Then
|
||||
If Not addedHandler Then
|
||||
SyncLock addedHandlerLockObject
|
||||
If Not addedHandler Then
|
||||
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||
addedHandler = True
|
||||
End If
|
||||
End SyncLock
|
||||
End If
|
||||
#End If
|
||||
Return defaultInstance
|
||||
End Get
|
||||
End Property
|
||||
End Class
|
||||
End Namespace
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||
Friend Module MySettingsProperty
|
||||
|
||||
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||
Friend ReadOnly Property Settings() As Global.md5Convert.My.MySettings
|
||||
Get
|
||||
Return Global.md5Convert.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
6
md5Convert/Properties/Settings.settings
Normal file
6
md5Convert/Properties/Settings.settings
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
</SettingsFile>
|
26
md5Convert/Properties/app.manifest
Normal file
26
md5Convert/Properties/app.manifest
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app" />
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||
<security>
|
||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<!-- UAC Manifest Options
|
||||
If you want to change the Windows User Account Control level replace the
|
||||
requestedExecutionLevel node with one of the following.
|
||||
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||
|
||||
If you want to utilize File and Registry Virtualization for backward
|
||||
compatibility then delete the requestedExecutionLevel node.
|
||||
-->
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</requestedPrivileges>
|
||||
<applicationRequestMinimum>
|
||||
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||
<PermissionSet class="System.Security.PermissionSet" version="1" ID="Custom" SameSite="site" Unrestricted="true" />
|
||||
</applicationRequestMinimum>
|
||||
</security>
|
||||
</trustInfo>
|
||||
</asmv1:assembly>
|
BIN
md5Convert/Resources/encrypted.ico
Normal file
BIN
md5Convert/Resources/encrypted.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
23
md5Convert/app.config
Normal file
23
md5Convert/app.config
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<system.diagnostics>
|
||||
<sources>
|
||||
<!-- Dieser Abschnitt definiert die Protokollierungskonfiguration für My.Application.Log -->
|
||||
<source name="DefaultSource" switchName="DefaultSwitch">
|
||||
<listeners>
|
||||
<add name="FileLog"/>
|
||||
<!-- Auskommentierung des nachfolgenden Abschnitts aufheben, um in das Anwendungsereignisprotokoll zu schreiben -->
|
||||
<!--<add name="EventLog"/>-->
|
||||
</listeners>
|
||||
</source>
|
||||
</sources>
|
||||
<switches>
|
||||
<add name="DefaultSwitch" value="Information"/>
|
||||
</switches>
|
||||
<sharedListeners>
|
||||
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/>
|
||||
<!-- Auskommentierung des nachfolgenden Abschnitts aufheben und APPLICATION_NAME durch den Namen der Anwendung ersetzen, um in das Anwendungsereignisprotokoll zu schreiben -->
|
||||
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
|
||||
</sharedListeners>
|
||||
</system.diagnostics>
|
||||
<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
|
BIN
md5Convert/darkfellow.ico
Normal file
BIN
md5Convert/darkfellow.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
BIN
md5Convert/encrypted.ico
Normal file
BIN
md5Convert/encrypted.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
153
md5Convert/frmAbout.Designer.vb
generated
Normal file
153
md5Convert/frmAbout.Designer.vb
generated
Normal file
|
@ -0,0 +1,153 @@
|
|||
'
|
||||
' Erstellt mit SharpDevelop.
|
||||
' Benutzer: dominic
|
||||
' Datum: 12.01.2010
|
||||
' Zeit: 03:40
|
||||
'
|
||||
' Sie können diese Vorlage unter Extras > Optionen > Codeerstellung > Standardheader ändern.
|
||||
'
|
||||
Partial Class frmAbout
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
''' <summary>
|
||||
''' Designer variable used to keep track of non-visual components.
|
||||
''' </summary>
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
''' <summary>
|
||||
''' Disposes resources used by the form.
|
||||
''' </summary>
|
||||
''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
If disposing Then
|
||||
If components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
End If
|
||||
MyBase.Dispose(disposing)
|
||||
End Sub
|
||||
|
||||
''' <summary>
|
||||
''' This method is required for Windows Forms designer support.
|
||||
''' Do not change the method contents inside the source code editor. The Forms designer might
|
||||
''' not be able to load this method if it was changed manually.
|
||||
''' </summary>
|
||||
Private Sub InitializeComponent()
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAbout))
|
||||
Me.lblTop = New System.Windows.Forms.Label()
|
||||
Me.lnkEmail = New System.Windows.Forms.LinkLabel()
|
||||
Me.lblNotice = New System.Windows.Forms.Label()
|
||||
Me.pictureBox1 = New System.Windows.Forms.PictureBox()
|
||||
Me.btnCloseAbout = New System.Windows.Forms.Button()
|
||||
Me.lnkWebsiteLink = New System.Windows.Forms.LinkLabel()
|
||||
CType(Me.pictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'lblTop
|
||||
'
|
||||
Me.lblTop.Font = New System.Drawing.Font("Arial", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.lblTop.Location = New System.Drawing.Point(14, 14)
|
||||
Me.lblTop.Name = "lblTop"
|
||||
Me.lblTop.Size = New System.Drawing.Size(455, 57)
|
||||
Me.lblTop.TabIndex = 0
|
||||
Me.lblTop.Text = "label1"
|
||||
'
|
||||
'lnkEmail
|
||||
'
|
||||
Me.lnkEmail.AutoSize = True
|
||||
Me.lnkEmail.Font = New System.Drawing.Font("Arial", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.lnkEmail.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||
Me.lnkEmail.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline
|
||||
Me.lnkEmail.Location = New System.Drawing.Point(17, 41)
|
||||
Me.lnkEmail.Name = "lnkEmail"
|
||||
Me.lnkEmail.Size = New System.Drawing.Size(100, 19)
|
||||
Me.lnkEmail.TabIndex = 1
|
||||
Me.lnkEmail.TabStop = True
|
||||
Me.lnkEmail.Text = "dominic@tmsn.at"
|
||||
Me.lnkEmail.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||
Me.lnkEmail.UseCompatibleTextRendering = True
|
||||
'
|
||||
'lblNotice
|
||||
'
|
||||
Me.lblNotice.AutoSize = True
|
||||
Me.lblNotice.Font = New System.Drawing.Font("Arial", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.lblNotice.Location = New System.Drawing.Point(14, 141)
|
||||
Me.lblNotice.Name = "lblNotice"
|
||||
Me.lblNotice.Size = New System.Drawing.Size(41, 15)
|
||||
Me.lblNotice.TabIndex = 3
|
||||
Me.lblNotice.Text = "label1"
|
||||
'
|
||||
'pictureBox1
|
||||
'
|
||||
Me.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
|
||||
Me.pictureBox1.Enabled = False
|
||||
Me.pictureBox1.Image = CType(resources.GetObject("pictureBox1.Image"), System.Drawing.Image)
|
||||
Me.pictureBox1.Location = New System.Drawing.Point(411, 14)
|
||||
Me.pictureBox1.Name = "pictureBox1"
|
||||
Me.pictureBox1.Size = New System.Drawing.Size(58, 57)
|
||||
Me.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
|
||||
Me.pictureBox1.TabIndex = 4
|
||||
Me.pictureBox1.TabStop = False
|
||||
'
|
||||
'btnCloseAbout
|
||||
'
|
||||
Me.btnCloseAbout.FlatStyle = System.Windows.Forms.FlatStyle.Flat
|
||||
Me.btnCloseAbout.Font = New System.Drawing.Font("Arial", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.btnCloseAbout.Location = New System.Drawing.Point(342, 130)
|
||||
Me.btnCloseAbout.Name = "btnCloseAbout"
|
||||
Me.btnCloseAbout.Size = New System.Drawing.Size(127, 35)
|
||||
Me.btnCloseAbout.TabIndex = 0
|
||||
Me.btnCloseAbout.Text = "Clo&se About"
|
||||
Me.btnCloseAbout.UseVisualStyleBackColor = True
|
||||
'
|
||||
'lnkWebsiteLink
|
||||
'
|
||||
Me.lnkWebsiteLink.AutoSize = True
|
||||
Me.lnkWebsiteLink.Font = New System.Drawing.Font("Arial", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.lnkWebsiteLink.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||
Me.lnkWebsiteLink.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline
|
||||
Me.lnkWebsiteLink.Location = New System.Drawing.Point(17, 63)
|
||||
Me.lnkWebsiteLink.Name = "lnkWebsiteLink"
|
||||
Me.lnkWebsiteLink.Size = New System.Drawing.Size(185, 19)
|
||||
Me.lnkWebsiteLink.TabIndex = 5
|
||||
Me.lnkWebsiteLink.TabStop = True
|
||||
Me.lnkWebsiteLink.Text = "http://tmsn.at/?tools&&md5convert"
|
||||
Me.lnkWebsiteLink.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||
Me.lnkWebsiteLink.UseCompatibleTextRendering = True
|
||||
'
|
||||
'frmAbout
|
||||
'
|
||||
Me.AcceptButton = Me.btnCloseAbout
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(483, 179)
|
||||
Me.Controls.Add(Me.lnkWebsiteLink)
|
||||
Me.Controls.Add(Me.btnCloseAbout)
|
||||
Me.Controls.Add(Me.pictureBox1)
|
||||
Me.Controls.Add(Me.lblNotice)
|
||||
Me.Controls.Add(Me.lnkEmail)
|
||||
Me.Controls.Add(Me.lblTop)
|
||||
Me.Cursor = System.Windows.Forms.Cursors.Default
|
||||
Me.DoubleBuffered = True
|
||||
Me.Font = New System.Drawing.Font("Arial", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.MaximizeBox = False
|
||||
Me.MinimizeBox = False
|
||||
Me.Name = "frmAbout"
|
||||
Me.ShowInTaskbar = False
|
||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
|
||||
Me.Text = "md5Convert - About"
|
||||
Me.TopMost = True
|
||||
CType(Me.pictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
Private WithEvents btnCloseAbout As System.Windows.Forms.Button
|
||||
Private pictureBox1 As System.Windows.Forms.PictureBox
|
||||
Private lblNotice As System.Windows.Forms.Label
|
||||
Private WithEvents lnkEmail As System.Windows.Forms.LinkLabel
|
||||
Private lblTop As System.Windows.Forms.Label
|
||||
Private WithEvents lnkWebsiteLink As System.Windows.Forms.LinkLabel
|
||||
End Class
|
1504
md5Convert/frmAbout.resx
Normal file
1504
md5Convert/frmAbout.resx
Normal file
File diff suppressed because it is too large
Load diff
47
md5Convert/frmAbout.vb
Normal file
47
md5Convert/frmAbout.vb
Normal file
|
@ -0,0 +1,47 @@
|
|||
'
|
||||
' Erstellt mit SharpDevelop.
|
||||
' Benutzer: dominic
|
||||
' Datum: 12.01.2010
|
||||
' Zeit: 03:40
|
||||
' Update: 11.11.2013 02:42
|
||||
' Aktualisierung von Website und Email
|
||||
' Update: 15.11.2014 15:27
|
||||
' Aktualisierung von Website und Email, Look & Feel
|
||||
'
|
||||
|
||||
Public Partial Class frmAbout
|
||||
Public Sub New()
|
||||
' The Me.InitializeComponent call is required for Windows Forms designer support.
|
||||
Me.InitializeComponent()
|
||||
End Sub
|
||||
|
||||
Sub FrmAboutLoad(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
|
||||
'lblTop.Text = "Dominic Reich" & Chr(13) & "Seite 37" & Chr(13) & "6433 Ötz"
|
||||
lblTop.Text = "Dominic Reich"
|
||||
lblNotice.Text = "© 2010,2016 Dominic Reich" + Chr(13) + "Redesigned in 2016"
|
||||
End Sub
|
||||
|
||||
Sub LnkEmailLinkClicked(ByVal sender As Object, ByVal e As LinkLabelLinkClickedEventArgs) Handles lnkEmail.LinkClicked
|
||||
' http://dotnet-snippets.de/dns/c-webseite-mit-standartbrowser-oeffnen-SID919.aspx
|
||||
On Error GoTo ShowError
|
||||
System.Diagnostics.Process.Start("mailto:Dominic Reich <dominic@tmsn.at>")
|
||||
lnkEmail.LinkVisited = True
|
||||
Exit Sub
|
||||
ShowError:
|
||||
MessageBox.Show(Err.Description, "An error occured", MessageBoxButtons.OK, MessageBoxIcon.Error)
|
||||
End Sub
|
||||
|
||||
Sub BtnCloseAboutClick(ByVal sender As Object, ByVal e As EventArgs) Handles btnCloseAbout.Click
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub LinkLabel1_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles lnkWebsiteLink.LinkClicked
|
||||
' http://dotnet-snippets.de/dns/c-webseite-mit-standartbrowser-oeffnen-SID919.aspx
|
||||
On Error GoTo ShowError
|
||||
System.Diagnostics.Process.Start("http://tmsn.at/?tools&md5convert")
|
||||
lnkWebsiteLink.LinkVisited = True
|
||||
Exit Sub
|
||||
ShowError:
|
||||
MessageBox.Show(Err.Description, "An error occured", MessageBoxButtons.OK, MessageBoxIcon.Error)
|
||||
End Sub
|
||||
End Class
|
BIN
md5Convert/md5Convert.pidb
Normal file
BIN
md5Convert/md5Convert.pidb
Normal file
Binary file not shown.
BIN
md5Convert/md5Convert.v12.suo
Normal file
BIN
md5Convert/md5Convert.v12.suo
Normal file
Binary file not shown.
276
md5Convert/md5Convert.vbproj
Normal file
276
md5Convert/md5Convert.vbproj
Normal file
|
@ -0,0 +1,276 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectGuid>{6B9384F8-BA3A-4942-854B-AC5EC752EB60}</ProjectGuid>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<MyType>WindowsForms</MyType>
|
||||
<RootNamespace>md5Convert</RootNamespace>
|
||||
<AssemblyName>md5Convert</AssemblyName>
|
||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
<SourceAnalysisOverrideSettingsFile>C:\Dokumente und Einstellungen\dominic\Anwendungsdaten\ICSharpCode/SharpDevelop3.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
|
||||
<RemoveIntegerChecks>False</RemoveIntegerChecks>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
<OptionStrict>On</OptionStrict>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<ApplicationIcon>Resources\encrypted.ico</ApplicationIcon>
|
||||
<SignManifests>false</SignManifests>
|
||||
<SignAssembly>false</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>
|
||||
</AssemblyOriginatorKeyFile>
|
||||
<DelaySign>false</DelaySign>
|
||||
<ManifestCertificateThumbprint>229A3BB6A9F7E6E0F4D9505A406783E51990BBC1</ManifestCertificateThumbprint>
|
||||
<ManifestKeyFile>Dominic_Signing.pfx</ManifestKeyFile>
|
||||
<GenerateManifests>false</GenerateManifests>
|
||||
<TargetZone>LocalIntranet</TargetZone>
|
||||
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
|
||||
<FileUpgradeFlags>
|
||||
</FileUpgradeFlags>
|
||||
<UpgradeBackupLocation>
|
||||
</UpgradeBackupLocation>
|
||||
<OldToolsVersion>3.5</OldToolsVersion>
|
||||
<TargetFrameworkProfile />
|
||||
<PublishUrl>publish/</PublishUrl>
|
||||
<Install>true</Install>
|
||||
<InstallFrom>Disk</InstallFrom>
|
||||
<UpdateEnabled>false</UpdateEnabled>
|
||||
<UpdateMode>Background</UpdateMode>
|
||||
<UpdateInterval>7</UpdateInterval>
|
||||
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||
<UpdatePeriodically>false</UpdatePeriodically>
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>false</MapFileExtensions>
|
||||
<ProductName>MD5 Convert</ProductName>
|
||||
<PublisherName>Dominic Reich</PublisherName>
|
||||
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
|
||||
<AutorunEnabled>true</AutorunEnabled>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>1.2.0.0</ApplicationVersion>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<CreateDesktopShortcut>true</CreateDesktopShortcut>
|
||||
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<RegisterForComInterop>False</RegisterForComInterop>
|
||||
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
|
||||
<BaseAddress>4194304</BaseAddress>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>Full</DebugType>
|
||||
<Optimize>False</Optimize>
|
||||
<DefineConstants>DEBUG=1,TRACE=1</DefineConstants>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DebugSymbols>False</DebugSymbols>
|
||||
<DebugType>None</DebugType>
|
||||
<Optimize>True</Optimize>
|
||||
<DefineConstants>TRACE=1</DefineConstants>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject>md5Convert.My.MyApplication</StartupObject>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG=1,TRACE=1</DefineConstants>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
<DebugType>Full</DebugType>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
|
||||
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
|
||||
<DocumentationFile>
|
||||
</DocumentationFile>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
<WarningLevel>1</WarningLevel>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE=1</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
<DebugType>None</DebugType>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
|
||||
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
|
||||
<DocumentationFile>
|
||||
</DocumentationFile>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
<WarningLevel>1</WarningLevel>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<CodeAnalysisIgnoreGeneratedCode>true</CodeAnalysisIgnoreGeneratedCode>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<WarningLevel>1</WarningLevel>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<WarningLevel>1</WarningLevel>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ManifestTimestampUrl>http://timestamp.verisign.com/scripts/timstamp.dll</ManifestTimestampUrl>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG=1,TRACE=1</DefineConstants>
|
||||
<WarningLevel>1</WarningLevel>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
<DebugType>Full</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>TRACE=1</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<WarningLevel>1</WarningLevel>
|
||||
<NoWarn>42353,42354,42355</NoWarn>
|
||||
<DebugType>None</DebugType>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.VisualBasic.Targets" />
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core">
|
||||
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||
</Reference>
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Data.DataSetExtensions">
|
||||
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||
</Reference>
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Xml.Linq">
|
||||
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="ApplicationEvents.vb" />
|
||||
<Compile Include="Properties\Resources.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\Settings.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="Properties\Resources.resx">
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Drawing" />
|
||||
<Import Include="System.Windows.Forms" />
|
||||
<Compile Include="frmAbout.Designer.vb">
|
||||
<DependentUpon>frmAbout.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="frmAbout.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="MainForm.Designer.vb">
|
||||
<DependentUpon>MainForm.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MainForm.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Properties\Application.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Application.myapp</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.vb" />
|
||||
<EmbeddedResource Include="frmAbout.resx">
|
||||
<DependentUpon>frmAbout.vb</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="MainForm.de-AT.resx">
|
||||
<DependentUpon>MainForm.vb</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="MainForm.resx">
|
||||
<DependentUpon>MainForm.vb</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
|
||||
<Install>true</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 2.0 %28x86%29</ProductName>
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.0 %28x86%29</ProductName>
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5</ProductName>
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="darkfellow.ico" />
|
||||
<None Include="Resources\encrypted.ico" />
|
||||
<Content Include="encrypted.ico" />
|
||||
<None Include="app.config" />
|
||||
<None Include="Properties\Application.myapp">
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="Properties\Settings.settings">
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Properties\app.manifest" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
</Project>
|
Loading…
Reference in a new issue