Private Sub Form_Activate()
Dim strText As String
Dim strSaveTitle As String
If App.PrevInstance = True Then
strSaveTitle = App.Title
App.Title = "... programa duplicado."
frmMain.Caption = "... programa duplicado."
strText = "Actualmente está abierta -Título-."
strText = strText + vbCrLf + "Sólo es necesario abrir una a la vez."
MsgBox strText, vbExclamation, "Advertencia..."
AppActivate strSaveTitle
SendKeys "% R", True
End
End If
End Sub