| | |
Deleting rows in Excel
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
Hi!
I have the following code-
I am trying to delete rows but I get the error-
Deleting data in a linked table is not supported by this ISAM
Anybody know how to get deletion to work in an excel sheet?
I have the following code-
vb.net Syntax (Toggle Plain Text)
Imports System.Data.OleDb Public Class Form1 Dim x As String = """" Dim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=c:\sbi\mm.xls;Extended Properties=" & x & "Excel 12.0 Xml;HDR=YES" & x & ";" Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim cn As New OleDb.OleDbConnection(cs) Try cn.Open() Catch ex As Exception MsgBox(ex.Message) End Try Dim cmd As New OleDbCommand("Select * from [sheet1$]", cn) Dim dr As OleDbDataReader dr = cmd.ExecuteReader While dr.Read Dim email As String = dr(1).ToString Try If email = "" Then Dim name As String = dr(0).ToString Dim cmd2 As New OleDbCommand("Delete from [sheet1$] where name='" & name & "'", cn) Try cmd2.ExecuteNonQuery() 'MsgBox("means") Catch ex As Exception MsgBox(ex.Message) End Try Else End If Catch ex As Exception MsgBox(ex.ToString) End Try End While MsgBox("Finally Done") End Sub End Class
I am trying to delete rows but I get the error-
Deleting data in a linked table is not supported by this ISAM
Anybody know how to get deletion to work in an excel sheet?
My blog on .NET- http://dotnet.tekyt.info
![]() |
Similar Threads
- Visual Basic coding for excel database - am tearing my hair out! (Visual Basic 4 / 5 / 6)
- Deleting Rows in excel (Visual Basic 4 / 5 / 6)
Other Threads in the VB.NET Forum
- Previous Thread: build succeeds but form doesn't appear
- Next Thread: Shrinking controls in vb.net 2005
| Thread Tools | Search this Thread |
Tag cloud for VB.NET
.net 2005 2008 access account application arithmetic array arrays basic bing button buttons c# center check checkbox code combobox component convert crystalreport data database datagrid datagridview date dissertation dissertations dropdownlist excel fade file-dialog ftp generatetags google gridview hardcopy images inline input insert intel internet listview mobile monitor ms net networking objects output passingparameters peertopeervideostreaming picturebox picturebox1 port print printing problem problemwithinstallation project remove save searchbox searchvb.net select serial server shutdown soap sorting survey table tcp temperature text textbox timer toolbox trim update updown user validation vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web winforms wpf





