S
Serguei Makacharipov
dim frmSeekFor as Form
dim frm as form
for each frm in application.forms
if ucase(frm.name) = UCase("IamlookingForYou") then
set frmSeekFor = frm
end if
next frm
How to check if my variable is not equal to nothing?
if frmSekFor = Nothing then
doesn't work
dim frm as form
for each frm in application.forms
if ucase(frm.name) = UCase("IamlookingForYou") then
set frmSeekFor = frm
end if
next frm
How to check if my variable is not equal to nothing?
if frmSekFor = Nothing then
doesn't work