ramasco
New member
- Local time
- Today, 22:37
- Joined
- May 15, 2020
- Messages
- 28
Hi everybody, 
can you tell me what is this form TMPCL.... (see attached pic)
I do not know what it is, how to delete and, above all, how did I make it?
To fix the problem I started deleting the VBA code associete, then I found the form from the vba Table (not from the list who has no evidence of it) and
deleted all was inside.
The all file is giving me some problem in a query and I don't understand the reason....
Can it be related to a color setting that I introduced by VBA?
in this way:
or can it be related to an ".Enabled" VBA command? I did nothing else (i think and hope)
bad news for me?
Thanks
Massimo

can you tell me what is this form TMPCL.... (see attached pic)
I do not know what it is, how to delete and, above all, how did I make it?

To fix the problem I started deleting the VBA code associete, then I found the form from the vba Table (not from the list who has no evidence of it) and
deleted all was inside.
The all file is giving me some problem in a query and I don't understand the reason....
Can it be related to a color setting that I introduced by VBA?
in this way:
Code:
Private Sub ConsentiModifiche_Click()
Dim Blcl As Control
Me.AllowEdits = True
If Me.AllowEdits = True Then
For Each Blcl In Forms(Ins_Azienda).Controls
If TypeOf Blcl Is TextBox Or TypeOf Blcl Is ComboBox Then
Blcl.BackColor = RGB(219, 243, 219)
End If
Next
End If
End Sub
or can it be related to an ".Enabled" VBA command? I did nothing else (i think and hope)

Thanks
Massimo