コード例 #1
0
        public static void openAscxAsForm(string ascxControlToLoad, string formName)
        {
            Type typeOfAscxControlToLoad = DI.reflection.getType(ascxControlToLoad);

            if (typeOfAscxControlToLoad == null)
            {
                DI.log.error("in O2Messages.openAscxAsForm could not resolve Type:{0}", ascxControlToLoad);
            }
            else
            {
                O2DockContent.launchO2DockContentAsStandAloneForm(typeOfAscxControlToLoad, formName);
            }
        }
コード例 #2
0
 public static void openAscxAsForm(Type ascxControlToLoad, string formName)
 {
     O2DockContent.launchO2DockContentAsStandAloneForm(ascxControlToLoad, formName);
 }