Tagged Questions
The com-object tag has no wiki summary.
3
votes
1answer
757 views
Conversion from type 'String' to type 'String' is not valid
I'm in the process of porting an old excel addin that was writen in VBA to VB .NET. The Excel addin interacts with a number of external com objects. The code sorta looks like this:
Dim hurr as Object
...
2
votes
4answers
929 views
Is it possible to duplicate the following credential process in VB.NET?
Solution (kinda):
Turns out this impersonation with .NET's security only allows application-level access. Since the COM object is at the system level, the impersonated user still cannot instantiate ...
1
vote
2answers
336 views
How to consume COM object in ASP.NET class file
I have a COM object that I am trying to wrap in a C# class in order to make it more readily available for other applications that wish to consume it.
I have the following code that creates an ...
1
vote
2answers
344 views
PowerShell, Open IE without Add-ons
I want to open the Internet Explorer as a new Com Object with no Add-ons.
$ie=New-Object -comobject InternetExplorer.Application
How could I start the Internet Explorer without Add-ons?
0
votes
1answer
160 views
Listing available COM Objects with Powershell
I am currently using the following script to list the available COM Objects on my machine.
$path = "REGISTRY::HKEY_CLASSES_ROOT\CLSID\*\PROGID"
foreach ($obj in dir $path) {
write-host ...
0
votes
1answer
876 views
Detecting and dynamicly loading the installed Microsoft Word Object Library
A little back story: I have small application that will use Word to generate a Outlook signature based on a Word template and data from the company active directory. It works wonderful on computers ...