-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodAPPFSWatcher.bas
More file actions
21 lines (19 loc) · 876 Bytes
/
Copy pathmodAPPFSWatcher.bas
File metadata and controls
21 lines (19 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Attribute VB_Name = "modAPPFSWatcher"
' =====================================================
' MÓDULO DE UTILIDADES Y GESTIÓN DEL FOLDERWATCHER
' Reemplaza la funcionalidad del VBScript fw.vbs
' =====================================================
'
' NOTA SOBRE RECURSOS COM:
' El componente FolderWatcherCOM.dll (.NET Framework 4.0) usa FileSystemWatcher
' que puede quedarse residente si no se libera correctamente.
' Ver clsFolderWatch.cls para documentacion detallada y recomendaciones
' para el codigo VB.NET del COM.
'
' SOLUCION IMPLEMENTADA:
' - clsFolderWatch.Dispose() libera todos los recursos
' - clsAplicacion.Terminate() llama a Dispose antes de Set = Nothing
' =====================================================
'@Folder "2-Servicios.Archivos.Supervision"
Option Explicit
Private Const MODULE_NAME As String = "modAPPFolderWatcher"