CARE | |
| 2008-05-15 01:44 - Respuestas: 0 - Tema nº: 2518426
Características: Windows XP Profesional 2 gigas en ram, pentium 4 3 ghz.
estoy usando un adodc un datacombo y un textbox, no tengo problemas para enlazar el adodc con el datacombo a una base de datos, tampoco tengo problemas en el llenado del datacombo, pero en el momento que enlazo con el textbox y empiezo a dar click en en datacombo la información que tengo se modifica con el siguiente registro. Alguien podria ayudarme por favaor. Mando el código
Private Sub Form_Load()
With Adodc1
.Caption = "Agregar Profesores"
.ConnectionString = "Provider=MSDASQL.1;Persist Security Info=False;User ID=semi;Data Source=SIGUE;Initial Catalog=SIGUE"
.Mode = adModeReadWrite
.CursorType = adOpenStatic
.LockType = adLockOptimistic
.RecordSource = "select * from Asignacion_Profesores_Adjuntos"
.CommandType = adCmdText
.Refresh
End With
With DataCombo1
Set .DataSource = Adodc1
.DataField = "rfc"
.BoundColumn = "rfc"
Set .RowSource = Adodc1
.ListField = "rfc"
Adodc1.Recordset.MoveFirst
DoEvents
End With
End Sub
| |
|
|