Resizer.Init error

I am working in Clarion v12. Initially when I generated the APP there were no problems. Then I started getting the following error when generating my app:

"Expected: ( ; ACCEPT ASSERT CHOOSE END INCLUDE OMIT RAISE TRY UNTIL WHILE SECTION COMPILE BEGIN PRAGMA - "

The referenced error in the Resizer.Init procedure:

Resizer.Init PROCEDURE(BYTE AppStrategy=AppStrategy:Resize,BYTE SetWindowMinSize=False,BYTE SetWindowMaxSize=False)
CODE
PARENT.Init(AppStrategy,SetWindowMinSize,SetWindowMaxSize)
SELF.SetParentDefaults() ! Calculate default control parent-child relationships based upon their positions on the window

Can anyone tell me why this occurs and the solution?

I am guessing that the issue is above the Resizer.Init method.
Show us the code from the module (clw) right above the resizer init method.

1 Like

The problem had to do with a new form I created. I deleted that form, and Resizer now works as expected.
Rick, thanks for the “hint”.

1 Like