Does VB.NET have an equivilant to the CursorDriver that is in VB 6.0. I copied this code from a VB 6 app.

VB Code:
  1. With grdoSybase
  2.       .Connect = "DSN=SBPROD;UID=" & logon & ";PWD=" & LCase(txtPassword)
  3.       .CursorDriver = rdUseIfNeeded
  4.       .QueryTimeout = 120
  5.       .EstablishConnection rdDriverNoPrompt
  6.    End With