本文介绍了VB .Net与ADSI问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用ADSI开发应用程序。我有以下代码:
DIM ADSUser作为IADsUser
ADSUser = GetObject(" LDAP:// CN = jonsmith,CN =用户,DC =域,DC = com")
MessageBox.Show(ADSUser.EmailAddress)
当我尝试运行程序时,我收到以下错误:
无法创建ActiveX组件
任何想法是什么导致这个?
I am trying to develop an app using ADSI. I have the following code:
Dim ADSUser As IADsUser
ADSUser = GetObject("LDAP://CN=jonsmith,CN=users,DC=domain,DC=com")
MessageBox.Show(ADSUser.EmailAddress)
When i try and run the program, i get the following error:
Cannot create ActiveX component
Any ideas what is causing this?
推荐答案
这篇关于VB .Net与ADSI问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!