0
我想顯示在我的按鈕一些文字,但我只可以在1個按鈕顯示的文本。我的按鍵是分開的像Button1.Text
,Button2.Text
和Button3.Text
和我.txt
文件只能顯示在Button1.Text
。這是我迄今爲止所做的代碼。閱讀txt文件,並顯示爲不同的按鈕
Private Sub FormMenu_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim R As New IO.StreamReader("TestFile.txt")
Button1.Text = R.ReadToEnd()
R.Close()
End Sub
裏面我.txt
文件有類似
First Button
Second Button
Third Button
,我想我的系統能夠閱讀並顯示到每個按鈕。怎麼做?謝謝。
謝謝你的回覆。我先嚐試一下。 – Emerald
非常感謝。它的工作:) – Emerald