Click here to Skip to main content
15,888,521 members

Comments by eswar_kanchu (Top 4 by date)

eswar_kanchu 24-Feb-13 9:33am View    
yes present I am using Google Ime for english to telugu conversion, but my problem is, when I typing value in textbox it is converting numeric values also in telugu local language
eswar_kanchu 4-Dec-12 20:38pm View    
your link is not a solution Mr. Manas because I am looking for offline transliteration
eswar_kanchu 10-Dec-11 11:11am View    
Thank u for ur reply
pls tell me, how could I get data row by row from excel to .net 2005 datagrid view
eswar_kanchu 29-Nov-11 8:10am View    
Dim MyConnection As System.Data.OleDb.OleDbConnection

Try

''''''' Fetch Data from Excel

'Dim DtSet As System.Data.DataSet

Dim MyCommand As System.Data.OleDb.OleDbDataAdapter


MyConnection = New System.Data.OleDb.OleDbConnection("provider=Microsoft.Jet.OLEDB.4.0; " & _
"data source='" & PrmPathExcelFile & " '; " & "Extended Properties=Excel 8.0;")

' Select the data from Sheet1 of the workbook.

MyCommand = New System.Data.OleDb.OleDbDataAdapter("select * from [PDFDATA$] where id is not null", MyConnection)

MyCommand.TableMappings.Add("Table", "Attendence")
DtSet = New System.Data.DataSet

MyCommand.Fill(DtSet)
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
DataGrid1.DataSource = DtSet.Tables(0)
MyConnection.Close()

Catch ex As Exception
MyConnection.Close()
End Try

Mr Manoj I am sending Excel Code