NULL in VB 7

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

John Smith

what is the keyword for a null pointer in vb
say i wanna clear a pointer to a datagrid cell
dim aa as datagrid.cell
....
aa = ???
 
Michael Buechel said:
hi john,

this is a vc newsgroup.

but the answer is

set aa = nothing

aa = Nothing

The 'Set' keyword isn't necessary anymore in VB.NET. Only VB6 and older need
it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top