I am attempting to create a bridge application between two time keeping systems using VB .NET
Basically I am performing the following steps:
1) Download time report from one system as an excel file
2) Parse the excel report file. Match up project and tasks codes (different in both systems) from an excel database.
3) Update an upload spreadsheet supplied by the 2nd systems vendor.
This upload spreadsheet contains project codes, task codes, time spent etc. I can update all of this information successfully using
ewsUploadData.Cells(iCount2, 3) = sTDProj
or
ewsUploadData.Range(sTemp2).Value = sTemp5
The remaining problem I have has to do with one particular set of cells. These cells appear to have a dropdown list in them. This list goes across two cells in the spreadsheet.
If I manually use keyboard controls to highlight the cell, the following appears in the cell:
INDEX(Types!C$2:C$3,Cell Links!A2)
The second cell covered by the same dropdown reads:
INDEX(Types!B$2:B$3,Cell Links!A2)
The cells are listed as protected as well.
Any ideas on how I would go about updating this type of cell from VB.NET?
Your help will be greatly appreciated. Ive been searching google and other web sites for a couple of days now.
~Jamie N
Basically I am performing the following steps:
1) Download time report from one system as an excel file
2) Parse the excel report file. Match up project and tasks codes (different in both systems) from an excel database.
3) Update an upload spreadsheet supplied by the 2nd systems vendor.
This upload spreadsheet contains project codes, task codes, time spent etc. I can update all of this information successfully using
ewsUploadData.Cells(iCount2, 3) = sTDProj
or
ewsUploadData.Range(sTemp2).Value = sTemp5
The remaining problem I have has to do with one particular set of cells. These cells appear to have a dropdown list in them. This list goes across two cells in the spreadsheet.
If I manually use keyboard controls to highlight the cell, the following appears in the cell:
INDEX(Types!C$2:C$3,Cell Links!A2)
The second cell covered by the same dropdown reads:
INDEX(Types!B$2:B$3,Cell Links!A2)
The cells are listed as protected as well.
Any ideas on how I would go about updating this type of cell from VB.NET?
Your help will be greatly appreciated. Ive been searching google and other web sites for a couple of days now.
~Jamie N