導航:首頁 > 文件教程 > vbnet中打開本地文件

vbnet中打開本地文件

發布時間:2024-09-11 12:33:41

A. vb.net 打開文件

System.Windows.Forms.OpenFileDialog
System.Windows.Forms.SaveFileDialog
System.Windows.Forms.FolderBrowserDialog
以上三抄個類均襲能夠很好的解決樓主的需求。
具體的請lz自己查msdn

B. vb.net 打開word,怎麼獲取要打開的文件名

OpenFileDialog1.ShowDialog()
Dim s As String = OpenFileDialog1.FileName
MessageBox.Show(s)

C. 怎樣用vb.net讀取本地.txt文件

imports System.IO

讀取指定文件
'
'讀取指定文本文件
Public Function readtext(ByVal path As String)
If path = "" Then
readtext = "操作失敗!"
Exit Function
End If
Try
If File.Exists(path) = True Then
Dim fs As New FileStream(path, FileMode.Open)
Dim sr As New StreamReader(fs)
Dim str As String
str = sr.ReadToEnd.ToString
sr.Close()
fs.Close()
readtext = str
Else
readtext = "操作失敗!"
End If
Catch ex As Exception
readtext = "操作失敗!"
End Try
End Function
'向指定文件寫入數據
Public Function writetext(ByVal path As String, ByVal opi As Integer, ByVal msg As String)
If path = "" Then
writetext = "操作失敗!"
Exit Function
End If
Dim op As FileMode
Select Case opi
Case 1
op = FileMode.Append
Case 2
op = FileMode.Create
Case Else
op = FileMode.Create
End Select
Try
If File.Exists(path) = True Then
Dim fs As New FileStream(path, op)
Dim sr As New StreamWriter(fs)
sr.WriteLine(msg)
sr.Close()
fs.Close()
writetext = "操作完成!"
Else
writetext = "操作失敗!"
End If
Catch ex As Exception
writetext = "操作失敗!"
End Try
End Function

參考這個吧
'
'vb.net源代碼來自www.c-pet.com
'

D. 如何用vb.net 打開一個既存的txt文檔。

可以調用CMD

方法一:

Shell("cmd.exe/ccallc:新建文本文檔.txt",AppWinStyle.NormalFocus)

缺點:不但會打開文本文件,同時還會顯示一個cmd窗體。

方法二:

需要新建一個bat文件到資源里,輸入start C:新建文本文檔.txt

代碼

shell"bat文件的路徑.bat"

這樣就好了,兩種方法各有好壞。一個會顯示cmd窗體,一個需要bat文件。

閱讀全文

與vbnet中打開本地文件相關的資料

熱點內容
ps入門必備文件 瀏覽:348
以前的相親網站怎麼沒有了 瀏覽:15
蘋果6耳機聽歌有滋滋聲 瀏覽:768
怎麼徹底刪除linux文件 瀏覽:379
編程中字體的顏色是什麼意思 瀏覽:534
網站關鍵詞多少個字元 瀏覽:917
匯川am系列用什麼編程 瀏覽:41
筆記本win10我的電腦在哪裡打開攝像頭 瀏覽:827
醫院單位基本工資去哪個app查詢 瀏覽:18
css源碼應該用什麼文件 瀏覽:915
編程ts是什麼意思呢 瀏覽:509
c盤cad佔用空間的文件 瀏覽:89
不銹鋼大小頭模具如何編程 瀏覽:972
什麼格式的配置文件比較主流 瀏覽:984
增加目錄word 瀏覽:5
提取不相鄰兩列數據如何做圖表 瀏覽:45
r9s支持的網路制式 瀏覽:633
什麼是提交事務的編程 瀏覽:237
win10打字卡住 瀏覽:774
linux普通用戶關機 瀏覽:114

友情鏈接