O FORM POSSUI CERTO OBJETO????
Como faço para descobrir se meu form possui objeto?????
Agradeço desde já!!!
Agradeço desde já!!!
if not form.controls.count = 0 then mgbox "possui controles"
para saber se exite textbox:
Dim Ctl As Control
For Each Ctl In Me.Controls
If TypeOf Ctl Is TextBox Then MsgBox "existe"
Next
para saber se exite textbox:
Dim Ctl As Control
For Each Ctl In Me.Controls
If TypeOf Ctl Is TextBox Then MsgBox "existe"
Next
Public Function fExiste() As Boolean
On Error GoTo Erro_fExiste
Dim clt As Control
For Each clt In Screen.ActiveForm
If TypeOf clt Is Data Then
MsgBox "existe"
If clt.Enabled = True Then MsgBox "abilitado"
End If
Next
Exit Function
Erro_fExiste:
fExiste = False
End Function
On Error GoTo Erro_fExiste
Dim clt As Control
For Each clt In Screen.ActiveForm
If TypeOf clt Is Data Then
MsgBox "existe"
If clt.Enabled = True Then MsgBox "abilitado"
End If
Next
Exit Function
Erro_fExiste:
fExiste = False
End Function
Tópico encerrado , respostas não são mais permitidas