21 lines
563 B
VB.net
21 lines
563 B
VB.net
Imports PluginContracts
|
|
Public Class Class1
|
|
Implements PluginContracts.IPlugin
|
|
|
|
Public ReadOnly Property Name() As String Implements IPlugin.Name
|
|
Get
|
|
Return "EDOKA_Dokument_Berechtigungen"
|
|
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
|