<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how can I read and write on excel ? in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817869#M50277</link>
    <description>&lt;P&gt;Take a look ath this topic&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/Visual-LISP-AutoLISP-and-General/Names-and-coordinates-in-excel-placing-blocks-in-autocad/td-p/2708791" target="_blank"&gt;http://forums.autodesk.com/t5/Visual-LISP-AutoLISP-and-General/Names-and-coordinates-in-excel-placing-blocks-in-autocad/td-p/2708791&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Mar 2013 19:57:17 GMT</pubDate>
    <dc:creator>Hallex</dc:creator>
    <dc:date>2013-03-28T19:57:17Z</dc:date>
    <item>
      <title>how can I read and write on excel ?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817233#M50275</link>
      <description>&lt;P&gt;&lt;IMG title="28-03-13-q1.jpg" src="https://forums.autodesk.com/t5/image/serverpage/image-id/49459iB1287293CEF7DCFB/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="28-03-13-q1.jpg" align="center" /&gt;&lt;/P&gt;&lt;P&gt;Hello everbody ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have like this form.&lt;/P&gt;&lt;P&gt;I want to save and update my form on d:\hsezenn.xls.&lt;/P&gt;&lt;P&gt;but when I try this. ı have same eror.&lt;/P&gt;&lt;P&gt;how can I save and update my data on d:\hsezenn.xls ?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2013 12:26:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817233#M50275</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-28T12:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: how can I read and write on excel ?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817287#M50276</link>
      <description>&lt;P&gt;Your going to have to show your code and where it's crashing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are lots of examples on the interwebs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://lmgtfy.com/?q=read+and+write+excel+vb.net" target="_blank"&gt;http://lmgtfy.com/?q=read+and+write+excel+vb.net&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.codeproject.com/Articles/32437/Read-and-Write-Excel-Files" target="_blank"&gt;http://www.codeproject.com/Articles/32437/Read-and-Write-Excel-Files&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2013 13:07:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817287#M50276</guid>
      <dc:creator>arcticad</dc:creator>
      <dc:date>2013-03-28T13:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: how can I read and write on excel ?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817869#M50277</link>
      <description>&lt;P&gt;Take a look ath this topic&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/Visual-LISP-AutoLISP-and-General/Names-and-coordinates-in-excel-placing-blocks-in-autocad/td-p/2708791" target="_blank"&gt;http://forums.autodesk.com/t5/Visual-LISP-AutoLISP-and-General/Names-and-coordinates-in-excel-placing-blocks-in-autocad/td-p/2708791&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2013 19:57:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817869#M50277</guid>
      <dc:creator>Hallex</dc:creator>
      <dc:date>2013-03-28T19:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: how can I read and write on excel ?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817889#M50278</link>
      <description>&lt;PRE&gt;Imports Microsoft.Office.Interop
Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim oSheet As Excel.Worksheet
        Dim oXLApp As Excel.Application
        Dim wb As Excel.Workbook
        oXLApp = CreateObject("Excel.Application")
        wb = oXLApp.Workbooks.Open("d:\file.xls")
        oSheet = wb.ActiveSheet
        oXLApp.Visible = True
        oSheet.Cells(1, 1).Value = textbox1.text
        oSheet.Cells(1, 2).Value = TextBox2.Text
        oSheet.Cells(1, 3).Value = TextBox3.Text
        oSheet.Cells(1, 4).Value = TextBox4.Text
        wb.Save()
    End Sub
End Class&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;when I do this code.&lt;/P&gt;&lt;P&gt;It doesnt work.&lt;/P&gt;&lt;P&gt;ı couldnt save my file.xls&lt;/P&gt;&lt;P&gt;how can I save my file.xls file ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2013 20:13:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817889#M50278</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-28T20:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: how can I read and write on excel ?</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817904#M50279</link>
      <description>&lt;P&gt;Try this code snip to save .xls file:&lt;/P&gt;&lt;PRE&gt;			'Save workbook
			xlBook.SaveAs(FileName, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, _
				Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing)
			xlApp.Workbooks.Close()
			xlApp.Quit()
			'or
			' xlApp.Windows[1].Close(false, Type.Missing, Type.Missing);&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2013 20:26:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-can-i-read-and-write-on-excel/m-p/3817904#M50279</guid>
      <dc:creator>Hallex</dc:creator>
      <dc:date>2013-03-28T20:26:39Z</dc:date>
    </item>
  </channel>
</rss>

