Problem with the utilisation of NULL

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

Dim ctl As Control
Dim blnEnabled As String

blnEnabled = NULL
For Each ctl In Me
If ctl.Tag = "ClearAll" _
Then ctl = blnEnabled
Next ctl

Can anybody tell me what's wrong with this code????

I'm always getting an error message saying that I'm not using NULL
correctly???

Thanks

JS
 
Back
Top