Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What ADODC control Method replaces .edit in the intrinsic control

Status
Not open for further replies.

Regan1

Programmer
Dec 7, 1999
1
US
What method would you use to replace the object.EDIT method if you were converting this code to be used with the ADODC control in VB6.<br>

................................<br>

With Data1.Recordset<br>

If (.EditMode = dbEditNone) Then<br>

vMyBookMark = .BookMark<br>

.Edit<br>

Call updateButtons<br>

..............................<br>

I want to change to<br>

................................<br>

With ADODC1.Recordset<br>

If (.EditMode = adEditNone) Then<br>

vMyBookMark = .BookMark<br>

(**WHAT GOES HERE**)<br>

Call updateButtons<br>

.................................<br>

Any help would sure be appreciated.<br>

<br>


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top