EBDN - Community - Question & Answers

  Tuesday, 04 June 2019
  1 Replies
  1.5K Visits
0
Votes
Undo
How to Read value of a Cell from Ebase Worksheet in VB.NET environment

I need help to complete GetValue(Of ....remaining parameters
where iColCount is WorkSheet Column Number

I want value of each cell in each row of Ebase WorkSheet.
I have done in VBA and C# but I could make it work in VB.NET code

For Each XRow In oWorksheet1.Rows
Do While iColCount <= oWorksheet1.Columns.Count
Dim sVal As String = XRow.GetValue(Of???????

iColCount = iColCount + 1
Loop
Next