Ejemplo n.º 1
0
        public static void openAscxAsForm(string ascxControlToLoad, string formName)
        {
            Type typeOfAscxControlToLoad = PublicDI.reflection.getType(ascxControlToLoad);

            if (typeOfAscxControlToLoad == null)
            {
                PublicDI.log.error("in O2Messages.openAscxAsForm could not resolve Type:{0}", ascxControlToLoad);
            }
            else
            {
                O2DockContent.launchO2DockContentAsStandAloneForm(typeOfAscxControlToLoad, formName);
            }
        }
Ejemplo n.º 2
0
 public static void openAscxAsForm(Type ascxControlToLoad, string formName)
 {
     O2DockContent.launchO2DockContentAsStandAloneForm(ascxControlToLoad, formName);
 }