Sounds worthy. If you look at the help on creating a form, at
Creating a Form you will see that the
illustration shows what you now get, i.e the
Form Properties Dialog but the description below matches not that but the
Window Attributes Dialog (which is what you used to get under 6.3 but now only get for a .win file, i.e. effectively the Task Window., via right-click
Task.win select
attributes.)

Confused? Confusing!
As others have mentioned you don't NEED the code expert: you can hand write code like
..
onMenuItem(Source,id_file_close):-
WH= Source:getVPIWindow(), vpi::winDestroy(WH),!.
onMenuItem(Source, id_style_font):-
WindowHandle= Source:getVPIWindow(),
OldFont=vpi::winGetFont(WindowHandle),
_RetFont= vpiCommonDialogs::getFont(OldFont, NewFontName, NewFontSize),
write("", className," NewFontName: ", NewFontName," NewFontSize: ",NewFontSize,"\n"),!.
..
which is more compact than the code expert would generate e.g.
predicates
onHelpAbout : window::menuItemListener.
clauses
onHelpAbout(TaskWin, _MenuTag):-
_AboutDialog = aboutDialog::display(TaskWin).
predicates
onFileExit : window::menuItemListener.
clauses
onFileExit(_, _MenuTag):-
close().
but the code expert launched via the
Window Attributes Dialog was convenient, and the
Window Attributes Dialog gathered it all together, i,e properties and code expert/menu options. I liked it!
Best wishes