vb点虐 新建文本文件 vbnet新建文件夹
vb点虐 创建一个txt文本,在debug文件夹里
设计一个窗口,添加一个名为textBox1的System.Windows.Forms.TextBox,
创新互联主营镇沅网站建设的网络公司,主营网站建设方案,成都app开发,镇沅h5微信小程序搭建,镇沅网站营销推广欢迎镇沅等地区企业咨询
添加一个名为button1的System.Windows.Forms.Button。
为button1的单击事件添加如下处理函数:
Sub Button1Click(sender As Object, e As EventArgs)
'f是你的文本文件的文件名
Const f As String="t.txt"
Dim sw As System.IO.StreamWriter=Nothing
Try
If Not System.IO.File.Exists(f) Then
sw=System.IO.File.CreateText(f)
Else
sw=New System.IO.StreamWriter(f,True)
End If
sw.WriteLine(textBox1.Text)
Finally
If sw IsNot Nothing Then
sw.close()
End If
End Try
End Sub
我想用vb点虐 做一个程序,新建一个文本文件并打开(最前段),逐字显示我预先设定的文字(不是一
用StreamReader和StreamWriter读写文本文件,在读取的过程中判断字符串即可。
vb点虐 如何在D盘新建一个test.ini文件呢?
'创建一个文本文件,把文本框里的文字写入到该文件,当然,你可以使用一个字符串变量
Dim MyStream As New System.IO.FileStream("D:\test.ini", System.IO.FileMode.Create)
Dim MyWriter As New System.IO.StreamWriter(MyStream, System.Text.Encoding.Default)
MyWriter.WriteLine(TextBox1.Text)
MyWriter.Flush()
MyWriter.Close()
MyStream.Close()
文章标题:vb点虐 新建文本文件 vbnet新建文件夹
文章转载:http://pwwzsj.com/article/ddiogdo.html