Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
I want to import Data from Column A to Column H and from Row 14 to the end ..

the code for open excel file and import data from Specific Cells to Textbox and DateTimePicker below ..

VB
Dim SourceBookPath As String = Nothing
        Me.OpenFileDialog1.Filter = "Excel files (*.xls,*.xlsx)|*.xls;*.xlsx"
        Me.OpenFileDialog1.ShowDialog()
        If Not Me.OpenFileDialog1.FileName Is Nothing Then
            SourceBookPath = Me.OpenFileDialog1.FileName
        End If

        '=========================================================

        Dim MsExcel = CreateObject("Excel.Application")
        Dim ExcelBook = MsExcel.Workbooks.Open(SourceBookPath)
        Try
            TextBox1.Text = MsExcel.Cells(6, 2).Value
            TextBox2.Text = MsExcel.Cells(6, 4).Value
            DateTimePicker1.Text = MsExcel.Cells(6, 6).Value
            TextBox4.Text = MsExcel.Cells(6, 8).Value
            TextBox5.Text = MsExcel.Cells(8, 2).Value
            DateTimePicker2.Text = MsExcel.Cells(8, 4).Value
            TextBox7.Text = MsExcel.Cells(8, 6).Value
            TextBox8.Text = MsExcel.Cells(8, 8).Value
            DateTimePicker3.Text = MsExcel.Cells(11, 2).Value

            '=========================================================


            '=========================================================

            ExcelBook.Close(False)
            ExcelBook = Nothing
            MsExcel.Quit()
            MsExcel = Nothing
            MsgBox("Data Importing OK!", MsgBoxStyle.Information)
        Catch ex As Exception
            ExcelBook.Close(False)
            ExcelBook = Nothing
            MsExcel.Quit()
            MsExcel = Nothing
            MsgBox(ex.Message)
        End Try


I just want the code for importing data to DataGridView and must be compatible with the code above..

Thanks a lot .
Posted
Updated 11-Jul-12 11:43am
v2

 
Share this answer
 
Now i am creating one gui for entering candidate details in WPF and i stored the whole entered data in excel sheet,but after successful search based on candidate Name/Email i want display respected excel result in my search window.. please any one help me its urgent
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900