1
Answer

Diaplay the equivalent value in the textbox by using SQL Table

Here i included sql table named TVOP with 2 columns Operation & Opcode. Here in this scenario when i select the operation in the dropdown list 2 then the equivalent opcode must be displayed in the text box

Attachment: mathcalc.rar

Answers (1)
0
Yonatan Sion

Yonatan Sion

NA 2 0 13y
if you're willing to consider 3rd party, The following tool will do it for you:

http://nobhillsoft.com/Columbo.aspx
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 13y
This not a simple task, so no ready made codes to share. You can also try this with LINQ to EXCEL.
0
gold spoon

gold spoon

NA 3 8.4k 13y
Please post code..
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 13y
Use the Excel object model (also known as Excel Interop) to read each spreadsheet.

Create a DataSet which is an in-memory copy of data; you do not need to write the data to a database. Create two tables in the DataSet, one for the data for each spreadsheet. Use a SQL query to create a union. Use the result of that to create the new spreadsheet.

Alternatively you can read the data of each of the two spreadsheets into collections and then use LINQ to create the union.