Private Sub Button1_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles Button1.Click 'ファイルに書き込む Dim strFname As String 'ファイル名 Dim strData As String '書き込む内容 Dim lngFno As Long 'ファイル番号
strFname = TextBox1.Text If strFname = "" Then MsgBox("ファイル名を指定してください") Exit Sub End If
'フリー番号 lngFno = FreeFile()
'書き出す FileOpen(lngFno, strFname, OpenMode.Output)
Print(lngFno, TextBox2.Text)
FileClose(lngFno)
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles Button2.Click
'ファイルから読み出す Dim strFname As String 'ファイル名 Dim strData As String '書き込む内容 Dim lngFno As Long 'ファイル番号
strFname = TextBox1.Text If strFname = "" Then MsgBox("ファイル名を指定してください") Exit Sub End If