13 lines
324 B
VB.net
13 lines
324 B
VB.net
Imports DigitalData.Modules.Windream
|
|
Public Class clswindream
|
|
Public Sub New()
|
|
LOGGER.Debug("Initializing windream...")
|
|
Try
|
|
Dim clswmDD As New Windream(LOGCONFIG, True, "W", "\\windream\onjects", False, "", "", "", "")
|
|
Catch ex As Exception
|
|
|
|
End Try
|
|
|
|
End Sub
|
|
End Class
|