Re: การexport dataจาก excel ไปยัง text file
Posted: Wed Aug 13, 2014 2:42 pm
Code: Select all
Application.DisplayAlerts = False
range("A3:K3").Select
LastCol = ActiveSheet.UsedRange.SpecialCells(xlCellTypeLastCell).Column
LastRow = ActiveSheet.UsedRange.SpecialCells(xlCellTypeLastCell).Row
FilePath = Application.DefaultFilePath & "\kok.txt"
Open FilePath For Output As #1
For i = 1 To LastRow
For j = 1 To LastCol
If j = LastCol Then
CellData = CellData + Trim(ActiveCell(i, j).Value)
Else
CellData = CellData + Trim(ActiveCell(i, j).Value) + " "
End If
Next j
Write #1, CellData
CellData = ""
Next i
Close #1
range("A4").Select
Application.DisplayAlerts = True
แต่codeที่ให้อาจารย์ไปเป็นcodeที่เขียนเพิ่มใน textboxแต่มันต้องปิด text fileก่อนข้อมูลถึงจะupdateอยากถามอาจารย์ว่าต้องแก้ไขอย่างไรดีค่ะ