My.Computer.FileSystem.WriteAllText("C:\Users\weigan\Desktop\G代码\equation.txt", "文件内容", False, System.Text.Encoding.Default)
VB中关闭窗口直接使用Unload就可以。 Unload语句卸载 Form对象或控件。 其语法: Unload object object 所在处是要卸载的 Form 对象或控件数组元素的名称。 例子:点击按钮弹出Form2窗体,关闭自身窗体 Private Sub Command1_Click() Form2.Show' 弹出form2 Unload Me‘关闭自身窗体 End Sub