initial commit
This commit is contained in:
commit
6b24fbfa38
34 changed files with 1165 additions and 0 deletions
22
Aufwachen.sln
Normal file
22
Aufwachen.sln
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.31101.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Aufwachen", "Aufwachen\Aufwachen.vbproj", "{542DFF8A-D17F-45D9-8906-A25860967587}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{542DFF8A-D17F-45D9-8906-A25860967587}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{542DFF8A-D17F-45D9-8906-A25860967587}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{542DFF8A-D17F-45D9-8906-A25860967587}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{542DFF8A-D17F-45D9-8906-A25860967587}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
BIN
Aufwachen.v12.suo
Normal file
BIN
Aufwachen.v12.suo
Normal file
Binary file not shown.
6
Aufwachen/App.config
Normal file
6
Aufwachen/App.config
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
142
Aufwachen/Aufwachen.vbproj
Normal file
142
Aufwachen/Aufwachen.vbproj
Normal file
|
@ -0,0 +1,142 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{542DFF8A-D17F-45D9-8906-A25860967587}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<StartupObject>Aufwachen.My.MyApplication</StartupObject>
|
||||
<RootNamespace>Aufwachen</RootNamespace>
|
||||
<AssemblyName>Aufwachen</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<MyType>WindowsForms</MyType>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DocumentationFile>Aufwachen.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DocumentationFile>Aufwachen.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>tmsnat.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Drawing" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Windows.Forms" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="frm_Main.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="frm_Main.Designer.vb">
|
||||
<DependentUpon>frm_Main.vb</DependentUpon>
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="frm_Status.Designer.vb">
|
||||
<DependentUpon>frm_Status.vb</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="frm_Status.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="My Project\Application.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Application.myapp</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Resources.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Settings.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="frm_Main.resx">
|
||||
<DependentUpon>frm_Main.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="frm_Status.resx">
|
||||
<DependentUpon>frm_Status.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="My Project\Resources.resx">
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="My Project\Application.myapp">
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="My Project\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="tmsnat.ico" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
3
Aufwachen/Aufwachen.vbproj.user
Normal file
3
Aufwachen/Aufwachen.vbproj.user
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
</Project>
|
38
Aufwachen/My Project/Application.Designer.vb
generated
Normal file
38
Aufwachen/My Project/Application.Designer.vb
generated
Normal file
|
@ -0,0 +1,38 @@
|
|||
'------------------------------------------------------------------------------
|
||||
' <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
|
||||
|
||||
'NOTE: This file is auto-generated; do not modify it directly. To make changes,
|
||||
' or if you encounter build errors in this file, go to the Project Designer
|
||||
' (go to Project Properties or double-click the My Project node in
|
||||
' Solution Explorer), and make changes on the Application tab.
|
||||
'
|
||||
Partial Friend Class MyApplication
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
Public Sub New()
|
||||
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
|
||||
Me.IsSingleInstance = True
|
||||
Me.EnableVisualStyles = True
|
||||
Me.SaveMySettingsOnExit = False
|
||||
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
Protected Overrides Sub OnCreateMainForm()
|
||||
Me.MainForm = Global.Aufwachen.frm_Main
|
||||
End Sub
|
||||
End Class
|
||||
End Namespace
|
10
Aufwachen/My Project/Application.myapp
Normal file
10
Aufwachen/My Project/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>frm_Main</MainForm>
|
||||
<SingleInstance>true</SingleInstance>
|
||||
<ShutdownMode>0</ShutdownMode>
|
||||
<EnableVisualStyles>true</EnableVisualStyles>
|
||||
<AuthenticationMode>0</AuthenticationMode>
|
||||
<SaveMySettingsOnExit>false</SaveMySettingsOnExit>
|
||||
</MyApplicationData>
|
35
Aufwachen/My Project/AssemblyInfo.vb
Normal file
35
Aufwachen/My Project/AssemblyInfo.vb
Normal file
|
@ -0,0 +1,35 @@
|
|||
Imports System
|
||||
Imports System.Reflection
|
||||
Imports 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.
|
||||
|
||||
' Review the values of the assembly attributes
|
||||
|
||||
<Assembly: AssemblyTitle("Aufwachen")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("Aufwachen")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2014")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
'The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
<Assembly: Guid("1576cf11-8bdd-4500-bc7c-6b5db091cb07")>
|
||||
|
||||
' 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.*")>
|
||||
<Assembly: AssemblyFileVersion("1.0")>
|
62
Aufwachen/My Project/Resources.Designer.vb
generated
Normal file
62
Aufwachen/My Project/Resources.Designer.vb
generated
Normal file
|
@ -0,0 +1,62 @@
|
|||
'------------------------------------------------------------------------------
|
||||
' <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.Resources
|
||||
|
||||
'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.
|
||||
'''<summary>
|
||||
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||
'''</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>
|
||||
''' Returns the cached ResourceManager instance used by this class.
|
||||
'''</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("Aufwachen.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Overrides the current thread's CurrentUICulture property for all
|
||||
''' resource lookups using this strongly typed resource class.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||
Get
|
||||
Return resourceCulture
|
||||
End Get
|
||||
Set(ByVal value As Global.System.Globalization.CultureInfo)
|
||||
resourceCulture = value
|
||||
End Set
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
117
Aufwachen/My Project/Resources.resx
Normal file
117
Aufwachen/My Project/Resources.resx
Normal file
|
@ -0,0 +1,117 @@
|
|||
<?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.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: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" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</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" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</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>
|
||||
</root>
|
73
Aufwachen/My Project/Settings.Designer.vb
generated
Normal file
73
Aufwachen/My Project/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", "11.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.Aufwachen.My.MySettings
|
||||
Get
|
||||
Return Global.Aufwachen.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
7
Aufwachen/My Project/Settings.settings
Normal file
7
Aufwachen/My Project/Settings.settings
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?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>
|
||||
<Settings />
|
||||
</SettingsFile>
|
BIN
Aufwachen/bin/Debug/Aufwachen.vshost.exe
Normal file
BIN
Aufwachen/bin/Debug/Aufwachen.vshost.exe
Normal file
Binary file not shown.
6
Aufwachen/bin/Debug/Aufwachen.vshost.exe.config
Normal file
6
Aufwachen/bin/Debug/Aufwachen.vshost.exe.config
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
11
Aufwachen/bin/Debug/Aufwachen.vshost.exe.manifest
Normal file
11
Aufwachen/bin/Debug/Aufwachen.vshost.exe.manifest
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<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">
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
</assembly>
|
BIN
Aufwachen/bin/Release/Aufwachen.vshost.exe
Normal file
BIN
Aufwachen/bin/Release/Aufwachen.vshost.exe
Normal file
Binary file not shown.
6
Aufwachen/bin/Release/Aufwachen.vshost.exe.config
Normal file
6
Aufwachen/bin/Release/Aufwachen.vshost.exe.config
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||
</startup>
|
||||
</configuration>
|
11
Aufwachen/bin/Release/Aufwachen.vshost.exe.manifest
Normal file
11
Aufwachen/bin/Release/Aufwachen.vshost.exe.manifest
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<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">
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
</assembly>
|
127
Aufwachen/frm_Main.Designer.vb
generated
Normal file
127
Aufwachen/frm_Main.Designer.vb
generated
Normal file
|
@ -0,0 +1,127 @@
|
|||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class frm_Main
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form overrides dispose to clean up the component list.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Required by the Windows Form Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Windows Form Designer
|
||||
'It can be modified using the Windows Form Designer.
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frm_Main))
|
||||
Me.txt_mac = New System.Windows.Forms.MaskedTextBox()
|
||||
Me.btn_wake = New System.Windows.Forms.Button()
|
||||
Me.btn_help = New System.Windows.Forms.Button()
|
||||
Me.btn_end = New System.Windows.Forms.Button()
|
||||
Me.btn_defined_1 = New System.Windows.Forms.Button()
|
||||
Me.btn_defined_2 = New System.Windows.Forms.Button()
|
||||
Me.btn_defined_3 = New System.Windows.Forms.Button()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'txt_mac
|
||||
'
|
||||
Me.txt_mac.Location = New System.Drawing.Point(12, 12)
|
||||
Me.txt_mac.Mask = "AA:AA:AA:AA:AA:AA"
|
||||
Me.txt_mac.Name = "txt_mac"
|
||||
Me.txt_mac.Size = New System.Drawing.Size(331, 20)
|
||||
Me.txt_mac.TabIndex = 0
|
||||
'
|
||||
'btn_wake
|
||||
'
|
||||
Me.btn_wake.Location = New System.Drawing.Point(196, 38)
|
||||
Me.btn_wake.Name = "btn_wake"
|
||||
Me.btn_wake.Size = New System.Drawing.Size(147, 33)
|
||||
Me.btn_wake.TabIndex = 1
|
||||
Me.btn_wake.Text = "AUFWECKEN"
|
||||
Me.btn_wake.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btn_help
|
||||
'
|
||||
Me.btn_help.Location = New System.Drawing.Point(196, 77)
|
||||
Me.btn_help.Name = "btn_help"
|
||||
Me.btn_help.Size = New System.Drawing.Size(147, 33)
|
||||
Me.btn_help.TabIndex = 2
|
||||
Me.btn_help.Text = "HILFE"
|
||||
Me.btn_help.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btn_end
|
||||
'
|
||||
Me.btn_end.Location = New System.Drawing.Point(196, 116)
|
||||
Me.btn_end.Name = "btn_end"
|
||||
Me.btn_end.Size = New System.Drawing.Size(147, 33)
|
||||
Me.btn_end.TabIndex = 3
|
||||
Me.btn_end.Text = "ENDE"
|
||||
Me.btn_end.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btn_defined_1
|
||||
'
|
||||
Me.btn_defined_1.Location = New System.Drawing.Point(12, 38)
|
||||
Me.btn_defined_1.Name = "btn_defined_1"
|
||||
Me.btn_defined_1.Size = New System.Drawing.Size(147, 33)
|
||||
Me.btn_defined_1.TabIndex = 4
|
||||
Me.btn_defined_1.Text = "MONSTER"
|
||||
Me.btn_defined_1.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btn_defined_2
|
||||
'
|
||||
Me.btn_defined_2.Location = New System.Drawing.Point(12, 77)
|
||||
Me.btn_defined_2.Name = "btn_defined_2"
|
||||
Me.btn_defined_2.Size = New System.Drawing.Size(147, 33)
|
||||
Me.btn_defined_2.TabIndex = 5
|
||||
Me.btn_defined_2.Text = "BUERO"
|
||||
Me.btn_defined_2.UseVisualStyleBackColor = True
|
||||
'
|
||||
'btn_defined_3
|
||||
'
|
||||
Me.btn_defined_3.Location = New System.Drawing.Point(12, 116)
|
||||
Me.btn_defined_3.Name = "btn_defined_3"
|
||||
Me.btn_defined_3.Size = New System.Drawing.Size(147, 33)
|
||||
Me.btn_defined_3.TabIndex = 6
|
||||
Me.btn_defined_3.Text = "WEITERER PC"
|
||||
Me.btn_defined_3.UseVisualStyleBackColor = True
|
||||
Me.btn_defined_3.Visible = False
|
||||
'
|
||||
'frm_Main
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(355, 163)
|
||||
Me.Controls.Add(Me.btn_defined_3)
|
||||
Me.Controls.Add(Me.btn_defined_2)
|
||||
Me.Controls.Add(Me.btn_defined_1)
|
||||
Me.Controls.Add(Me.btn_end)
|
||||
Me.Controls.Add(Me.btn_help)
|
||||
Me.Controls.Add(Me.btn_wake)
|
||||
Me.Controls.Add(Me.txt_mac)
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.Name = "frm_Main"
|
||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
|
||||
Me.Text = "Aufwachen - Wake On LAN Tool"
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
Friend WithEvents txt_mac As System.Windows.Forms.MaskedTextBox
|
||||
Friend WithEvents btn_wake As System.Windows.Forms.Button
|
||||
Friend WithEvents btn_help As System.Windows.Forms.Button
|
||||
Friend WithEvents btn_end As System.Windows.Forms.Button
|
||||
Friend WithEvents btn_defined_1 As System.Windows.Forms.Button
|
||||
Friend WithEvents btn_defined_2 As System.Windows.Forms.Button
|
||||
Friend WithEvents btn_defined_3 As System.Windows.Forms.Button
|
||||
|
||||
End Class
|
195
Aufwachen/frm_Main.resx
Normal file
195
Aufwachen/frm_Main.resx
Normal file
|
@ -0,0 +1,195 @@
|
|||
<?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=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
AAABAAIAEBAAAAEAGABoAwAAJgAAACAgAAABABgAqAwAAI4DAAAoAAAAEAAAACAAAAABABgAAAAAAAAD
|
||||
AAASCwAAEgsAAAAAAAAAAAAAgHt8bmlqVE9QmJOUbmlqWlVWa2ZnZWBhHCQaHCIdPUFCaGtwhIeMb3N0
|
||||
UFZRaHBmYVxdV1JTWlVWdnFyUEtMR0JDXFdYV1JTHiQfO0A/U1ZbW1xmc3R+gYSJaW5tWF5ZWFNUQz4/
|
||||
aGNkY15fU05PU05PXFdYUUxNMDM3S01VVVVhV1ZmdHODlJSgiYuTYWRobWhpQDs8gXx9enV2fnl6b2pr
|
||||
Yl1eVlFSQUJMODhGMjBDWFVrhYKYo6G0qam3g4SOcm1uQz4/l5KToZydk46PX1pbTEdIVVBRNzdDISAw
|
||||
DgwgREBZgn6XtLLGzMvbkpKeX1pbRkFCjYiJr6qrgHt8ODM0MSwtSURFKSo0JSUzCAYZLSpAamd9uLbJ
|
||||
4uLwhYaQXllaTEdIYFtcm5aXc25vR0JDRD9AQDs8QkVKOTpEFxclPDpNYV9ynp6s1tfhfYCFcWxtVVBR
|
||||
MSwtgn1+fHd4fHd4cm1uQDs8bXFyR0pPIyMvX15ubm19fHyIu77DhYmKaWhkUU9OMC8xNjk+b3F8Ymd2
|
||||
g4mcXGN3amdwOjdATElSaWZvUU5XeHV+tbK7dXJ7cG9rU1FQCQgKDxIXMjQ+YGNxkZWnjZOmbWpzTUpT
|
||||
SEVOZGFqe3iBY2BpLis0bWpzZ2ZiUlNRAQEBCAkNEhQcaWt2oqOxvcDPhoSKTUtRPTtBYV9lenh+aGZs
|
||||
AAAEOjg+ZWZkYmNhNzc3LSwwJiYsX15njYyWrKq2l5aaVVRYY2JmjYyQTUxQdnV5Li0xIyImUVJQS0tL
|
||||
TExMGxocEg4TEw8UQT1DYl5kZWRmS0pMXVxelZSWKikrT05QTEtNFxYYaWtrU1NTY2NjKykpJyIjHBYX
|
||||
U0xPjYSHcnJyZmZmPDw8g4ODfX19bGxsQEBAKioqSkxMJScnMDAwHhkaEg0MGBAQPDIyi39/X19fQ0ND
|
||||
DAwMMDAwenp6WlpaAAAAGhoaX2FiNzk5Nzc3SkZFKiUkPDMwNiooh3p4cHFvWltZYWJgQkNBaWpoX2Be
|
||||
GxwaY2RiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAACgAAAAgAAAAQAAAAAEAGAAAAAAAAAwAABILAAASCwAAAAAAAAAAAACTjo+Ef4B8d3hz
|
||||
bm+Piot4c3SSjY59eHmAgIB3d3d6enp4eHhsbGx0dHR/f392dnZwb3FfX19jY2NYWVd5enhZWlZpamZ+
|
||||
f3tjZmuCg4d8fn6JioiCgX2Df35rZWaXkZKGgYJZVFVcV1hUT1BLRkdtaGl4c3SblpdYWFhQUFBWVlZY
|
||||
WFhNTU1NTU1NTU0+Pj4AAAAAAAAODg4FBQUZGhgLDApCQ0F4eXd+gYZfYmdCQ0djY2NiYGBMR0gwKit6
|
||||
dHWAe3xAOzxeWVpmYWI4MzRvamtcV1iemZpOTk5CQkJISEhPT09ISEhISEhGRkY3NzcbGxsAAAAJCQkn
|
||||
JydeXl5jY2NzcnR5eHqKjJaKi5VydHxqanBhYGRsaWtPSkuFgYCGgYJAOzxcV1hzbm9QS0xqZWZkX2CW
|
||||
kZJVVVVDQ0NISEhUVFRUVFRbW1thYWFYWFgoKSchISE9PT1aWVtgX2NTUlZeXGJqaG5gZG+PkJ6dna18
|
||||
fIpdW2dta3FFQ0N0c2+Mh4hCPT43MjNNSElgW1xQS0x4c3SJhIVFRUU2NjZAQEBTU1NUVFRXV1ddXV1X
|
||||
V1diY2FLTEpTU1NpaGxUUlhQTVZfW2ZqZnJxdoV/gJSjpLmppr+Mip14d4E1NjR9gHeHgoNNSEktKClC
|
||||
PT5+eXpSTU5oY2RfWltISEg8PDxNTU1gYGBXV1dNTU1NTU1ISEheX1swMS8qKipVVFhKR1BaVmJYU2JL
|
||||
RVZ0eo19f5eenrygnb2opb++vspkZ2WFi4B/entWUVI4MzROSUqVkJGIg4RXUlNjXl9ubm5eXl5mZmZu
|
||||
bm5ZWVlJSUlPT09UVFQ8PTkyMzFKSUtxb3U2Mj1DPk1iXG96c4hFTGBiZYGKiKxybZSMh6bOzd1nbGpm
|
||||
bWB7dndQS0wvKis+OTqIg4S+ubpnYmOloKGMjIxzc3NsbGxnZ2dKSko/Pz9UVFRmZmZbXFgqKykcGx1A
|
||||
PkQVER0/OUpjXHF1bYR1e5J4fJmrqtGsqNG1sdTMzN5fZGKEjn55eXlERERAQEA7OztcXFzY2NiioqJ7
|
||||
e3uNhJl1bX6Nho1lX2BsZmGCeXVNQUFoW102Nio4NzkzMUcTETUAABsXFC5OS1RmY15zb4yRkamkq7y5
|
||||
ws/AytHW2t+PjZN8dXyBgYFGRkZbW1tWVlZQUFC6urrCwsKNjY16cYZ1bX5nYGdQSkteWFNuZWFbT09R
|
||||
REY0MipEQ0dNS2EtLE4BACMGAxw2NDpZVlFZVnCIiKCdo7alrruut8Db3ualo6mTjJOAgIA3NzdUVFRa
|
||||
WlpJSUmPj4/W1tacnJx+dYqCeotQSVA2MDE7NTBLQj5aTk42KSsSDwsvLTNGRFoxMFABACAAAA8bGR9P
|
||||
TEdjYHmbnLGvtcipscKosL3S1d2VlJh5dHZ+fn4vLy83NzdPT09dXV1tbW3Hx8e2trZ3boNyantRSlEj
|
||||
HR4VDwo0KydNQUE6LS8PCgwkICswLkQjI0EEBSEAAA0QDxNJRkJjYnaTlKivtMm+xdjByNfV1+GGhYll
|
||||
YWB8fHxHR0c+Pj5VVVVzc3NNTU2YmJjc3NxfVmtGPk9lXmU2MDEZEw5COTVEODhYS01GPklFP1AwLkQe
|
||||
HzkZGzMNDhweHSFPTEhGRlZdXnKAhJy7wdjY3vHm6POWlZeEgX1xcXFdXV1bW1tfX19fX18tLS1dXV3b
|
||||
29t3boNCOkuEfYRxa2xLRUBbUk5DNzdiVVdlW2xfWG0zMUcaHDQtMUQzNUA+PT9pZmJOUFtOUGJjZ3+l
|
||||
qcXKzubY2eePj4+LiYFwcHBWVlZkZGRZWVkyMjIyMjJBQUGlpaWso7hXT2B3cHeUjo91b2pbUk5JPT1W
|
||||
SUtgU2tpYXg6OE4XGi8xNkVBQ01MS012c29kZnBkZ3ZscImXm7ivs8zAwc97e3t1dWl9fX1GRkZdXV1P
|
||||
T08YGBhUVFRJSUlwcHDAt8xVTV5BOkGIgoN7dXBKQT1USEhOQUNjVnB7coxPTGUeIjUtM0A4O0NBQEJr
|
||||
Z2ZTVl5maXh0eJGSlbSnqsbFxtSEhYN2dmp+fn5YWFhra2tfX189PT1FRUVRUVFdXV2Hh4d6eX0rJzJ9
|
||||
eYW7t8OLiJFJSEpUVVN7fIp2dIdUTmU2MElCOU5STFddWFlqZ19aXFZeXWFpZXh/eZjFwOCRkamIjpl/
|
||||
iIt/f39VVVVeXl5GRkYWFhYYGBgoKCg7OzszODeOkZZsbHhiYXFraXyPj52Njph/godbXGpzcoJSTWIZ
|
||||
EyonHjJXUltoY2ReW1NTV0xVVVVhXm1qZn+gnbehorZ8golRW1t6enpTU1NeXl5AQEADAwMAAAADAwMZ
|
||||
GRkoMjJfZ25bYG96fZKMjae1t8+forducoVfYG5WVWU/O042MkVHQE9OSlBeWll7d3KQk4R+fniLiY95
|
||||
doVTUmJtb3pVXF9sdXJycnJSUlJqampUVFQSEhIAAAAAAAALCwswPEA5RExCSVxlaYVMT25ucZCNka6d
|
||||
ob1ra3tOTV1APUxZV2NqZW5PTE5WUlGHgn+Wl4dgX1VzcXB0cngHBg8VGBwQFxSBiYJycnJPT09paWla
|
||||
WlocHBwAAAAAAAAICAgAAAc1Pkx6gJeLj6xlZ4mipcSssM2Mkapzc4Vvbn5YVmJJSU9XVFZaWFhbV1Zn
|
||||
YmFzcmQ3NStNSkVvbW0FBAYRExMAAgBzeXR5eXlISEhYWFhOTk4aGhoBAQEAAAAGBgYAAA0lKD1YWXNg
|
||||
YH5TU3Gys83Gyt23vMufnrJ/fo5WVV5LTU1ZWFRRUExTT05sZmeIgnt0bmd1cG17d3YNCwsNDA4EBgdt
|
||||
b3B8fHxCQkJQUFBSUlItLS0XFxcICAgMDAwEABksJ0KEf5y7ttOjn7i7usqztb3b3+CvrcN1dYNLS1Fd
|
||||
YVx1dm1bW1VYVFOBe3yUioqNhYV1bW15c3QdGBoCAAMAAARjYGl5eXlAQEBVVVVnZ2dNTU03NzcdHR0W
|
||||
FhYhFzUIABwlGzljWnWGf5SsqbJwcW9wc2qAfpR0dIJXWFxRVU90dWuDhHt3dHBvaWqEeXxgVVg6MjOG
|
||||
gIFxbG4aFhwIBA9lYG9/f39KSkpjY2NUVFRYWFhPT09BQUEdHR0KDw4aHx4MERACBwYrMC9cYWBjaGdW
|
||||
W1phYWFmZmZhYWFWVlZbW1tycnKJiYmSkpJWVlY9PT0HBwdsbGx0dHQLCwsAAABsbGx/f386OjpRUVFQ
|
||||
UFBVVVVBQUE5OTkoKCgqKioqKioXFxcBAQEVFRVMTExqampiYmJvb29kZGRcXFxXV1dTU1NbW1t7e3ud
|
||||
nZ1oaGgICAgAAACQkJCZmZklJSULCwtcXFx+fn4wMDBLS0tWVlZaWlo2NjYsLCwlJSUtJygpIyQtJygh
|
||||
GxwiHB1dV1iPiYqFf4CDg4NqampbW1tZWVlPT09MTExzc3OoqKh2dnYmJiYzMzO4uLh5eXkFBQUHBwdb
|
||||
W1t+fn46OjpZWVlfX19fX188PDwsLCwcHBwOAwURBgg1Kiw+MzUzKCppXmCflJaOg4V3d3dfX19JSUk+
|
||||
Pj4yMjIzMzNUVFR9fX2ysrKysrKzs7O5ublBQUEAAAAMDAxnZ2dycnI6OjpTU1NDQ0NDQ0M3NzcyMjIb
|
||||
GxsPBAYPBAYxJig5LjAsISNhVliaj5GQhYd0dHRlZWVKSkovLy8lJSUuLi49PT1GRkZdXV1+fn5ZWVkt
|
||||
LS0AAAAAAAAAAABfX196enpAQEBNTU0vLy8yMjI8PDxNTU0+Pj4GAAEFAAAFAAAFAAAFAAA8Njd6dHWD
|
||||
fX5sbGxjY2NKSkosLCwiIiIqKiorKysiIiI3NzdLS0skJCQMDAwFBQUJCQkFBQV3d3dRUVEKCgoVFRUC
|
||||
AgIGBgYKCgojIyMlJSUJCQkHBwcAAAAAAAALCws2NjZbW1tnZ2deXl5SUlJEREQ4ODgwMDAsLCwvLy80
|
||||
NDRlZWVgYGBUVFRAQEAREREGBgYAAABXV1elpaVVVVVnZ2dnZ2dqampZWVlqamp3d3daX15ma2pgZWRc
|
||||
YWBxdnV+g4J6f353fHuCgoJycnJvb295eXlzc3NkZGRwcHCMjIyCgoJqamp/f39/f39OTk5ubm5ubm6W
|
||||
lpYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAA==
|
||||
</value>
|
||||
</data>
|
||||
</root>
|
63
Aufwachen/frm_Main.vb
Normal file
63
Aufwachen/frm_Main.vb
Normal file
|
@ -0,0 +1,63 @@
|
|||
Imports System.Net.Sockets
|
||||
|
||||
Public Class frm_Main
|
||||
|
||||
Public Sub WakeOnLAN(ByVal MACAddress As String)
|
||||
Dim Client As New UdpClient
|
||||
Dim Count As Integer = 0
|
||||
Dim ByteArray(1024) As Byte
|
||||
Dim Pos As Integer = 0
|
||||
|
||||
Client.Connect("255.255.255.255", 12287)
|
||||
Client.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.Broadcast, 0)
|
||||
|
||||
For i As Integer = 0 To 5
|
||||
Count += 1
|
||||
ByteArray(Count) = &HFF
|
||||
Next
|
||||
|
||||
For i As Integer = 0 To 15
|
||||
Pos = 0
|
||||
For n As Integer = 0 To 5
|
||||
Count += 1
|
||||
ByteArray(Count) = Byte.Parse(MACAddress.Substring(Pos, 2), Globalization.NumberStyles.HexNumber)
|
||||
Pos += 2
|
||||
Next
|
||||
Next
|
||||
|
||||
Client.Send(ByteArray, 1024)
|
||||
End Sub
|
||||
|
||||
Private Sub btn_end_Click(sender As Object, e As EventArgs) Handles btn_end.Click
|
||||
End
|
||||
End Sub
|
||||
|
||||
Private Sub btn_defined_1_Click(sender As Object, e As EventArgs) Handles btn_defined_1.Click
|
||||
txt_mac.Text = "8C:89:A5:60:F1:AE"
|
||||
End Sub
|
||||
|
||||
Private Sub btn_defined_2_Click(sender As Object, e As EventArgs) Handles btn_defined_2.Click
|
||||
txt_mac.Text = "2C:41:38:B2:24:02"
|
||||
End Sub
|
||||
|
||||
Private Sub btn_defined_3_Click(sender As Object, e As EventArgs) Handles btn_defined_3.Click
|
||||
txt_mac.Text = "00:15:58:C5:3A:9C"
|
||||
End Sub
|
||||
|
||||
Private Sub btn_help_Click(sender As Object, e As EventArgs) Handles btn_help.Click
|
||||
MsgBox("Gib die MAC Adresse ins Textfeld ein oder drücke einen der linken Buttons um das Feld mit vordefinierten Werten zu füllen." & Chr(13) & Chr(10) & "Mit 'Aufwecken' wird das 'Magic Packet' gesendet.", MsgBoxStyle.OkOnly, "WOL Home - Hilfe")
|
||||
End Sub
|
||||
|
||||
Private Sub btn_wake_Click(sender As Object, e As EventArgs) Handles btn_wake.Click
|
||||
'On Error Resume Next
|
||||
On Error GoTo Do_Error
|
||||
Me.Enabled = False
|
||||
frm_Status.lbl_status.Text = "Magic Packet wird an " & Me.txt_mac.Text & " gesendet."
|
||||
frm_Status.ShowDialog()
|
||||
WakeOnLAN(txt_mac.Text.Replace(":", "").ToString)
|
||||
'WakeOnLAN(txt_mac.Text.ToString)
|
||||
Exit Sub
|
||||
Do_Error:
|
||||
MsgBox("Ein Fehler ist aufgetreten!" & Chr(13) & Chr(10) & Err.Number & " - " & Err.Description, MsgBoxStyle.Critical)
|
||||
End Sub
|
||||
End Class
|
61
Aufwachen/frm_Status.Designer.vb
generated
Normal file
61
Aufwachen/frm_Status.Designer.vb
generated
Normal file
|
@ -0,0 +1,61 @@
|
|||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||
Partial Class frm_Status
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form overrides dispose to clean up the component list.
|
||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Required by the Windows Form Designer
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'NOTE: The following procedure is required by the Windows Form Designer
|
||||
'It can be modified using the Windows Form Designer.
|
||||
'Do not modify it using the code editor.
|
||||
<System.Diagnostics.DebuggerStepThrough()> _
|
||||
Private Sub InitializeComponent()
|
||||
Me.components = New System.ComponentModel.Container()
|
||||
Me.lbl_status = New System.Windows.Forms.Label()
|
||||
Me.timer_status = New System.Windows.Forms.Timer(Me.components)
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'lbl_status
|
||||
'
|
||||
Me.lbl_status.AutoSize = True
|
||||
Me.lbl_status.Location = New System.Drawing.Point(12, 21)
|
||||
Me.lbl_status.Name = "lbl_status"
|
||||
Me.lbl_status.Size = New System.Drawing.Size(72, 13)
|
||||
Me.lbl_status.TabIndex = 0
|
||||
Me.lbl_status.Text = "Bitte warten..."
|
||||
'
|
||||
'timer_status
|
||||
'
|
||||
Me.timer_status.Interval = 5000
|
||||
'
|
||||
'frm_Status
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(291, 55)
|
||||
Me.Controls.Add(Me.lbl_status)
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None
|
||||
Me.Name = "frm_Status"
|
||||
Me.ShowIcon = False
|
||||
Me.ShowInTaskbar = False
|
||||
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
|
||||
Me.Text = "frm_Status"
|
||||
Me.ResumeLayout(False)
|
||||
Me.PerformLayout()
|
||||
|
||||
End Sub
|
||||
Friend WithEvents lbl_status As System.Windows.Forms.Label
|
||||
Friend WithEvents timer_status As System.Windows.Forms.Timer
|
||||
End Class
|
123
Aufwachen/frm_Status.resx
Normal file
123
Aufwachen/frm_Status.resx
Normal file
|
@ -0,0 +1,123 @@
|
|||
<?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=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="timer_status.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
</root>
|
11
Aufwachen/frm_Status.vb
Normal file
11
Aufwachen/frm_Status.vb
Normal file
|
@ -0,0 +1,11 @@
|
|||
Public Class frm_Status
|
||||
|
||||
Private Sub frm_Status_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
timer_status.Enabled = True
|
||||
End Sub
|
||||
|
||||
Private Sub timer_status_Tick(sender As Object, e As EventArgs) Handles timer_status.Tick
|
||||
frm_Main.Enabled = True
|
||||
Me.Close()
|
||||
End Sub
|
||||
End Class
|
10
Aufwachen/obj/Debug/Aufwachen.vbproj.FileListAbsolute.txt
Normal file
10
Aufwachen/obj/Debug/Aufwachen.vbproj.FileListAbsolute.txt
Normal file
|
@ -0,0 +1,10 @@
|
|||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\bin\Debug\Aufwachen.exe.config
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\bin\Debug\Aufwachen.exe
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\bin\Debug\Aufwachen.pdb
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\bin\Debug\Aufwachen.xml
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\obj\Debug\Aufwachen.frm_Main.resources
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\obj\Debug\Aufwachen.Resources.resources
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\obj\Debug\Aufwachen.vbproj.GenerateResource.Cache
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\obj\Debug\Aufwachen.exe
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\obj\Debug\Aufwachen.xml
|
||||
C:\Users\Dominic\AppData\Local\Temporary Projects\Aufwachen\obj\Debug\Aufwachen.pdb
|
BIN
Aufwachen/obj/Debug/DesignTimeResolveAssemblyReferences.cache
Normal file
BIN
Aufwachen/obj/Debug/DesignTimeResolveAssemblyReferences.cache
Normal file
Binary file not shown.
Binary file not shown.
BIN
Aufwachen/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll
Normal file
BIN
Aufwachen/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll
Normal file
Binary file not shown.
BIN
Aufwachen/obj/Release/DesignTimeResolveAssemblyReferences.cache
Normal file
BIN
Aufwachen/obj/Release/DesignTimeResolveAssemblyReferences.cache
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Aufwachen/tmsnat.ico
Normal file
BIN
Aufwachen/tmsnat.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.1 KiB |
22
LICENSE
Normal file
22
LICENSE
Normal file
|
@ -0,0 +1,22 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
4
README.md
Normal file
4
README.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
Aufwachen
|
||||
=========
|
||||
|
||||
A .NET Wake-On-Lan application - Highly modified for my personal usage (hardcoded MAC addresses)
|
Loading…
Reference in a new issue