Files
EDOKA_Tools/EDOKA_Toolset/.svn/pristine/f3/f35aeb5b5a80315b19167f69322c9da1d44fa266.svn-base
2020-10-21 10:43:18 +02:00

21 lines
546 B
Plaintext

Imports PluginContracts
Public Class Class1
Implements PluginContracts.IPlugin
Public ReadOnly Property Name() As String Implements IPlugin.Name
Get
Return "EDK_Analyzer"
End Get
End Property
Public Function Show(CurrentUser As String, Connectionstring As String, Parentform As Object) As Object Implements IPlugin.Show
Globals.Mitarbeiternr = CurrentUser
Dim f As New FrmData
f.Text = Me.Name
f.MdiParent = Parentform
f.Show()
End Function
End Class