作者gecer (gecer)
看板Visual_Basic
標題[VB6 ] [VBA] VB如何讀取 .edf 的檔案
時間Mon Dec 29 21:54:00 2014
小弟最近要整理一份副檔名 edf 的資料
但是嘗試過
edf_file包含整個file 包含跳行
但是
string_array=split(edf_file,vbcrlf)
string_array=split(edf_file,vbnewline)
無法將file 分割
令外一般打開文字檔的寫法
open file as for input as #1
do until EOF(1)
line input ,string1
loop
結果 string1 也是整個edf_file包含跳行的內容
依此看來vbcrlf 或是 vbnewline無法將edf做line by line的分割
請問要如何讀取edf檔?
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 111.255.0.234
※ 文章網址: http://webptt.com/m.aspx?n=bbs/Visual_Basic/M.1419861243.A.F45.html
1F:→ ClubT: 試試看用chr(10)或是chr(13) 12/30 09:18