cetee
級(jí)別: 略有小成
精華主題: 0
發(fā)帖數(shù)量: 73 個(gè)
工控威望: 218 點(diǎn)
下載積分: 10544 分
在線(xiàn)時(shí)間: 580(小時(shí))
注冊(cè)時(shí)間: 2010-08-05
最后登錄: 2024-10-30
查看cetee的 主題 / 回貼
樓主  發(fā)表于: 2018-09-29 12:08
希望各位大俠幫幫忙。
vb如何把文本框中的數(shù)據(jù)保存到excel,不能覆蓋,而是能保存到下一行,不影響前幾行保存的數(shù)據(jù).
cetee
級(jí)別: 略有小成
精華主題: 0
發(fā)帖數(shù)量: 73 個(gè)
工控威望: 218 點(diǎn)
下載積分: 10544 分
在線(xiàn)時(shí)間: 580(小時(shí))
注冊(cè)時(shí)間: 2010-08-05
最后登錄: 2024-10-30
查看cetee的 主題 / 回貼
1樓  發(fā)表于: 2018-10-11 10:32
各位樓主能發(fā)個(gè)列子嗎?這是小弟寫(xiě)的。但是 不 能操作。請(qǐng) 樓主指點(diǎn)。謝謝。。

Imports excel = Microsoft.Office.Interop.Excel

Imports System.IO
Public Class Form1
    Private Sub Button1_Click(sender As Object, e As EventArgs)

    End Sub
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

    End Sub
    Private Sub Button1_Click_1(sender As Object, e As EventArgs) Handles Button1.Click
        Dim fileTest As String = "c:\Temp\ExcelTest\test.xlsx"
        If File.Exists(fileTest) Then
            File.Delete(fileTest)
        End If

        Dim oexcel As Object
        oexcel = CreateObject("excel.Application")
        Dim obook As excel.Workbook
        Dim osheet As excel.Worksheet

        obook = oexcel.Workbooks.Add
        osheet = oexcel.Worksheets(1)

        osheet.Name = "test name"
        osheet.Range("1,1").Value = "button 1"
        obook.SaveAs(fileTest)
        obook.Close()
        obook = Nothing
        oexcel.Quit()
        oexcel = Nothing
    End Sub
End Class
cetee
級(jí)別: 略有小成
精華主題: 0
發(fā)帖數(shù)量: 73 個(gè)
工控威望: 218 點(diǎn)
下載積分: 10544 分
在線(xiàn)時(shí)間: 580(小時(shí))
注冊(cè)時(shí)間: 2010-08-05
最后登錄: 2024-10-30
查看cetee的 主題 / 回貼
2樓  發(fā)表于: 2018-10-11 21:15
能發(fā)個(gè)連接嗎?