Hello,
Thanks for your help. I fixed the problem. Since the default name is Form1.
vb, when it is renamed all resources associated should also have their names changed to reflect this automatically. I made a mistake when I renamed the file by forgetting the extention .
vb so it screwed everything up. The solution: manually go into the project directory and rename the files yourself - SIMPLE!
Another question: A quote from page 215
To dismiss the dialog box you rely on functionality built into the Button control. When you drew the button onto the About form, you set its DialogResult property to OK. If the button is on a modal dialog box this tells it that when it's pressed that modal dialog should be closed and the value in DialogResult(in this case OK) should be passed back to the caller.
Who is the caller? Since everything in
VB.net is an object, I would assume that since it is the toolbarHelpAbout object that triggers the About dialog box, this is the caller. Or is the caller the TextEditor form?
Tim