Is this late binding?
--------------------------------------------------------------------------------
Dim dSet As DataSet
dSet = New DataSet
--------------------------------------------------------------------------------
& is this early binding?
--------------------------------------------------------------------------------
Dim dSet As New DataSet
--------------------------------------------------------------------------------
Which one should a developer strive for & why? Also what are the
advantages & disadvantages of one over the other?
Thanks,
Ron
--------------------------------------------------------------------------------
Dim dSet As DataSet
dSet = New DataSet
--------------------------------------------------------------------------------
& is this early binding?
--------------------------------------------------------------------------------
Dim dSet As New DataSet
--------------------------------------------------------------------------------
Which one should a developer strive for & why? Also what are the
advantages & disadvantages of one over the other?
Thanks,
Ron