• arcengine 获得lic 信息


     private void button1_Click(object sender, EventArgs e)
            {

                ESRI.ArcGIS.esriSystem.IAoInitialize aoInitialize = new ESRI.ArcGIS.esriSystem.AoInitializeClass();
                ESRI.ArcGIS.esriSystem.ILicenseInformation licenseInformation = (ESRI.ArcGIS.esriSystem.ILicenseInformation)aoInitialize;

                System.String string_Licenses = null;
                try
                {

                    ESRI.ArcGIS.esriSystem.esriLicenseProductCode licenseProductCode = aoInitialize.InitializedProduct();
                    System.String string_LicenseProductName = licenseInformation.GetLicenseProductName(licenseProductCode);

                    string_Licenses = "This application is initialized with the following product license:" + System.Environment.NewLine + string_LicenseProductName + System.Environment.NewLine + "This application has the following extension licenses checked out:";

                    ESRI.ArcGIS.esriSystem.ILicenseInfoEnum licenseInfoEnum = licenseInformation.GetProductExtensions(licenseProductCode);

                    licenseInfoEnum.Reset();

                    ESRI.ArcGIS.esriSystem.esriLicenseExtensionCode licenseExtensionCode = licenseInfoEnum.Next();

                    while (!(System.Convert.ToInt32(licenseExtensionCode) == -1))
                    {

                        if (aoInitialize.IsExtensionCheckedOut(licenseExtensionCode) == true)
                        {
                            System.String string_LicenseExtensionName = licenseInformation.GetLicenseExtensionName(licenseExtensionCode);
                            string_Licenses = string_Licenses + System.Environment.NewLine + string_LicenseExtensionName;
                        }

                        licenseExtensionCode = licenseInfoEnum.Next();

                    }
                    System.Windows.Forms.MessageBox.Show(string_Licenses);

                }
                catch (System.Exception ex)
                {
                    System.Windows.Forms.MessageBox.Show(ex.ToString());

                }

            }

  • 相关阅读:
    如何正确记忆单词
    转:超级通用型分页存储过程
    Delphi报表开发ReportMachine的小计和总计的计算
    DELPHI编程用SQLDMO呈现带进度条的SQL Server数据库Databnse备份!
    datasnap 2010 心跳包,连接断开处理
    合并BPL包图文教程
    Borland DataSnap(MIDAS)三层架构编程中,主细表的处理方式
    网上摘的 杀进程函数
    为RB定制支持参数的自定义函数
    获取一个数据库中的所有表的名称、一个表中所有字段的名称
  • 原文地址:https://www.cnblogs.com/gisoracle/p/1913216.html
Copyright © 2020-2023  润新知