COMO SABER SE O FORM ESTA ABERTO?
Olá colegas!
como faço para saber se um form está aberto?
como faço para saber se um form está aberto?
public sub FormAberto(Byval NomeForm as string)
dim Frm as form
for each frm in forms
if ucase(frm.name) = ucase(nomeform) then exit for
next frm
if not frm is nothing then
msgbox "form carregado - se visivel teste abaixo"
if frm.visible then
msgbox "Form visivel"
endif
set frm=nothing
endif
end sub
dim Frm as form
for each frm in forms
if ucase(frm.name) = ucase(nomeform) then exit for
next frm
if not frm is nothing then
msgbox "form carregado - se visivel teste abaixo"
if frm.visible then
msgbox "Form visivel"
endif
set frm=nothing
endif
end sub
Tópico encerrado , respostas não são mais permitidas