It's been a while since I posted anything but you can be assurred we are
all still banging away on .NET here.  Here's an interesting observation:

This is legal (VB Syntax)

_ComboBoxData.Rows.Add(values:=New Object() {Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing})

And so is this:

_ComboBoxData.Rows.Add(values:=New Object(5) {Nothing, Nothing, Nothing,
Nothing, Nothing, Nothing})

But this isn't:

_ComboBoxData.Rows.Add(values:=New Object(5))


So what this tells me is that after all these years Nothing really is
something!!  Think about it for while...

Alan :-)

You can read messages from the Advanced DOTNET archive, unsubscribe from Advanced 
DOTNET, or
subscribe to other DevelopMentor lists at http://discuss.develop.com.

Reply via email to