[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Project Form in a abl MDI form

  • Thread starter Thread starter Mike Fechner
  • Start date Start date
Status
Not open for further replies.
M

Mike Fechner

Guest
It’s the same. Assuming your mdiForm has the IsMdiParent = TRUE Define variable s as ShowForm no-undo . s = new ShowForm (). s:MdiParent = mdiForm . s:Show () . “Is it also possible to open a window from a location such as c:\project\forms\searchform.cls” You cannot run any ABL class using an absolute path. You’ll have to NEW it based on the type name (class name). oForm = NEW forms.searchform ().

Continue reading...
 
Status
Not open for further replies.
Back
Top