Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
165
Data from Ultragrid into Textbox
posted

I am using VB6
with MS Access as backend database. The recordset is bounded to
database through� Infragistics ultragrid. (Set ultraGrid.DataSource = rs)



I have 3 columns in Infragistics ultragrid & 3 Textboxes on form.



Now, when I move through the records in ultraGrid the exact data in the cells should appear in the related textboxes.


in msflex i think we do with


Text1.Text = MSHFlexGrid1.TextMatrix(MSHFlexGrid1.Row,1)
How to get this job done? in ultragrid
plz help..
Thanks in advance.

  • 469350
    Suggested Answer
    Offline posted

    It's been a while since i did any ActiveX programming. But if I recall correctly, this should happen automatically, assuming that the grid and the textboxes are on the same form, and assuming that the TextBoxes are bound to the same recordset.