hi there,
i have an excel sheet and i need to get values from the excel sheet to the mdf file in the visual studio 2008 database.
the value i want to get from the excel file is a accounting value witch is displayed like this $ 67,300.34.
how can i remove the $ mark and the comma and get the double value to be saved in the database.
how can i do this.
below is the code to getting the value from the excel file
String ProductDes = tt.get_Range("b" + r, "b" + r).Text.ToString();
thanxxxxxxxxxxxxx