Control Handle unique?

  • Thread starter Thread starter news.microsoft.com
  • Start date Start date
N

news.microsoft.com

Is Control Handle unique??

If not, how can I check if two control are the same instance or
object(instance not class)
 
news.microsoft.com said:
Is Control Handle unique??
Yes.

If not, how can I check if two control are the same instance or
object(instance not class)

\\\
If ctr1 Is ctr2 Then
...
End If
///
 
If myVar1 Is myVar2 Then
' both pointing to same instance of the class
Else
' each pointing to different instance
End If
 

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