31 lines
767 B
VB.net
31 lines
767 B
VB.net
Imports DigitalData.Modules.Logging
|
|
Imports ZooFlow
|
|
''' <summary>
|
|
'''
|
|
''' Selfcontained:
|
|
''' - Config (Location of Window)
|
|
'''
|
|
''' Environment:
|
|
''' - Pattern Replacement Values
|
|
''' - User Info (isAdmin, etc)
|
|
''' - License Info?
|
|
''' - ConnectionString
|
|
'''
|
|
''' Parameters:
|
|
''' - Matching Profiles as List Of ProfileData
|
|
''' - Clipboard Content as String
|
|
''' </summary>
|
|
Public Class frmMatch
|
|
Public Sub New(LogConfig As LogConfig, Environment As ClassEnvironment)
|
|
' Dieser Aufruf ist für den Designer erforderlich.
|
|
InitializeComponent()
|
|
|
|
' Fügen Sie Initialisierungen nach dem InitializeComponent()-Aufruf hinzu.
|
|
|
|
End Sub
|
|
|
|
Private Sub frmMatch_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
|
|
|
End Sub
|
|
End Class
|