cancel
Showing results for 
Search instead for 
Did you mean: 

Question about Matrix Row Update?

Former Member
0 Kudos
344

Hi, all.

I'm make usertable of @ECRH And Insert two row into usertable.

Select usertable row and call row into matrix.

I need to update matrix row.

How do I update the value of this Row?

Sorry, I cannot do well English.

I need your help.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can do it by 2 ways:

1. Update cells of the matrix row by values of the table fields:

oMatrix.Columns.Item("xxx").Cells.Item(i).Specific.string=oRecordset.Fields.Item("yyy").Value

2. Bound matrix columns to the userdatasouurces. Set values of the userdatasouurces. Update matrix with SetLineData method.

Note: If you need to add rows to matrix, you have to add row befor setting cells in the first case, and use AddRow in place of SetLineData in second case.

Regards,

Mark

Answers (0)