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

21 lines
531 B
Plaintext

Imports PluginContracts
Public Class Class1
Implements PluginContracts.IPlugin
Public ReadOnly Property Name() As String Implements IPlugin.Name
Get
Return "EDOKA_DokTyp-FV-Wechsel"
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 Form1
f.MdiParent = Parentform
f.Show()
End Function
End Class