Leandrocpo Posted January 5, 2014 Posted January 5, 2014 Hello,I'm trying to dynamically create forms stored in a bpl. But to create them they are opening in vcl mode. I'm calling the following function within the bpl to create the form. function RegisterPkg(sAWidth,sAHeight: Integer; gUniMainModule : TuniGUIMainModule; gUniApplication : TUniGUIApplication):TGenericProgram; begin ... pkgProgram.FfrmMain := TUniForm( gUniMainModule.GetFormInstance(TfrmMyForm,true) ); if pkgProgram.FfrmMain.WebMode then ShowMessage('web') else if pkgProgram.FfrmMain.VCLMode then ShowMessage('vcl'); ... end; I wonder if I'm doing the right way or what would be the mode to create them in web mode and not in vcl. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.