Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Populating Excel Spreadsheet from .Net Add In which calls web service

Status
Not open for further replies.

kav123

Programmer
Jan 12, 2005
210
0
0
GB
I need to populate the spreadsheet by data being returned from the web service. I was thinking of using a COM .Net Add In which calls the web service and populates the spreadsheet.

However, there is also information from the spreadsheet which needs to be extracted to be passed as an input parameter to the web service. Any ideas how this can be achieved??
 
Ok, we are using Excel interop to read from and write to Excel. Basically the data needs to be passed to a service which retrieves data from database and a huge chunk of data is populated to Excel.

In terms of performance which would be better and Add-In or a ASP.Net page??



 
In terms of performance which would be better and Add-In or a ASP.Net page??
This is the wrong question to ask (or at least start with).

Better questions would be:
1. How does this process fit into the overall workflow of the business/context?
2. What applications are the end users comfortable with?
3. What would be the ideal user experience?

Less important questions, but should still be asked are:
1. What technologies is our team comfortable using?
2. How much time (estimated) will it take to learn a new environment? Have you built a webpage or add-in before?

This should guide the decision making process of what the UX (user experience will be).

there is an expression in software development
1. make it work
2. make it maintainable
3. make it fast

and fast is subjective. If the end user finds the preformance satisfactory and there are no technical problems with the duration of the operation then it doesn't need to be adjusted.

Jason Meckley
Programmer
Specialty Bakers, Inc.

faq855-7190
faq732-7259
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top