Class name conversion error

Mkontwg

Member
Hi team

Can anyone help me, with the following screen shot. I have an error when i launch the widget.
[error]
"Name of the class in the class statement frmEMaint.cls must match the pattern of the name file".
 

Attachments

  • genx_error.PNG
    genx_error.PNG
    9.2 KB · Views: 9
  • see_error.PNG
    see_error.PNG
    31.3 KB · Views: 8

jongpau

Member
Looks like you are trying to instantiate the object (form) with <object variable> = new frmEMaint() when it should be <object variable> = new UI.general.frmEMaint().
 

Genito

New Member
full path of the the program location in your project folder is required when instantiating your class, instead of eg. CLASS frmEMaint INHERITS form, try using in your case UI.general.frmEMaint INHERITS form
 
Top