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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Abelardo

  1. Abelardo

    Disconnectd ADO recordset problem

    Hi Jim, To my knowledge only those two variables need manual modificaction. The Microsoft Knowledge Base Article - 247868 "HOWTO: Manufacture an ADO Recordset Based on Another Recordset" shows an example, similar to the example i posted, but they fail to explain why those variables are not...
  2. Abelardo

    Disconnectd ADO recordset problem

    Here is a sample code(rstSource = Source Recordset, rstTarget = Target Recordset , manually created). For Each objField In rstSource.fields rstTarget.fields.Append objField.Name, objField.Type, objField.DefinedSize, objField.Attributes...
  3. Abelardo

    Disconnectd ADO recordset problem

    When Creating the recordset "on the fly" using the Fields.append method , it will set up everything except for two properties. Precision and Numericscale. These have to be entered seperately right after appending the Field. This can be a problem in the case of working with adNumeric fields. You...

Part and Inventory Search

Back
Top