- Introdotta modalita' chiave operatore con opzione AnyDb

- Gestito lock con abilitazione all'apertura dei file
- Gestione nuovi campi Db per lock negli oggetti vb
- Aggiunto id chiave su lock
This commit is contained in:
Emmanuele Sassi
2022-07-19 11:35:03 +02:00
parent ae65d448a9
commit 5a20897641
14 changed files with 155 additions and 86 deletions
@@ -74,6 +74,26 @@ Public Class ProjectFileM
End Set
End Property
Protected m_sLockedBy As String
Public Property sLockedBy As String
Get
Return m_sLockedBy
End Get
Set(value As String)
m_sLockedBy = value
End Set
End Property
Protected m_dtLock As DateTime
Public Property dtLock As DateTime
Get
Return m_dtLock
End Get
Set(value As DateTime)
m_dtLock = value
End Set
End Property
#Region "CONSTRUCTORS"
#End Region ' CONSTRUCTORS