Line <line number>: The file <filename> could not be loaded.

Syntax errors prevent Visual Basic from parsing and loading, or form name conflicts prevent loading of an ASCII form.  The form will not be loaded and the form name will not be displayed in the Project window.

Make sure that the file that caused this error is a valid ASCII form in the correct format and that there are no conflicts among the different forms in the project.  The correct ASCII form format is:

     Version 2.00
           Begin { Form | MdiForm} <formname>
                 prop = value
                 prop = value
                 [...]
                 Begin <control class> <control name>
                       prop = value
                       [...]
                       Begin ...
                             [...]
                       End
                 End
           End