I am trying to run this line of code in vb.net
It hits the .Value piece and gives me a MissingMemberException...Public member xlValues on type Workbook not found.
What do I need to change to let this piece function properly?
Code:
Dim xlsWB As Excel.Workbook
tTimer = xlsWB.Sheets(1).Cells.Find(checkFour, LookIn:=xlsWB.xlValues, Lookat:=xlsWB.xlWhole).Offset(0, 1).Value
What do I need to change to let this piece function properly?