cancel
Showing results for 
Search instead for 
Did you mean: 

Sales Order Matrix

Former Member
0 Kudos
175

Hi guys,

I need some help with getting a row count from the Sales Order form in SBO 2007A with either C# or VB.NET 2005 code.

I have tried many iterations of code in the ItemEvent Handler but all have failed. Also once somethings happens in the Matrix (item number 38) i cant seem to process any other ItemEvents, it's as if it skips the procedure completely.

Please help.

Kind regards,

Akash

Edited by: Akash Singh on Jan 12, 2011 6:33 PM

View Entire Topic
former_member689126
Active Contributor
0 Kudos

Hi

Have you tried this

Dim RowCount As Integer
 Dim oMatrix As Matrix = form.Items.Item("38").Specific
 RowCount = oMatrix.RowCount 'OR
 RowCount = oMatrix.VisualRowCount

can you please post your code

Regards

Arun