If you are talking about transferring the control objects, no. Notepad is just a text editor.
If you are talking about transfering the values of those objects, then yes.
You can define variables for their values and use the streamwriter class to export them to a file of your choice, by either appending the information or creating a new document.
An example:
Code:
Dim fs as System.IO.FileStream = New System.IO.FileStream("C:\myfile.txt",IO.FileMode.Create)
Dim sw as System.IO.StreamWriter = new System.IO.StreamWriter(fs)
sw.WriteLine(me.lblnam.Text)
sw.WriteLine(me.lblmem.Text)
sw.WriteLine(me.txt5.Text)
sw.Flush()
sw.Close()
sw = nothing
fs.Close()
fs = nothing