Form1. Declaration Syntax error

After converting a VB.net 2017 project there were quite a few errors. I got them all resolved except for 2 identical errors.

The error messages are: “Form1. Declaration Syntax error”
There is no line number nor any other information to help me understand what is wrong.

how about post the code?

I’ll bet you explicted typed something line “FORM myformaname” or “WINDOW myformaname”
you don’t do that… Xojo manages the opening and closing of all declarations for windows (forms), methods (sub/functions)

This is DIFFERENT that VB… but then Xojo isn’t VB

[quote=386632:@Mike Gauthier]After converting a VB.net 2017 project there were quite a few errors. I got them all resolved except for 2 identical errors.

The error messages are: “Form1. Declaration Syntax error”
There is no line number nor any other information to help me understand what is wrong.[/quote]

Try checking for properties in the window that have a blank name, and you should be able to delete them and the project should compile.

Well I found this problem in an unusual way. There were about 16 Properties listed with no description so I deleted them. After that, the Form1 errors went away.