Tagged Questions
The comobject tag has no wiki summary.
11
votes
5answers
1k views
How to get actual JavaScript value in onclick from webbrowser control?
I'm looking for a way to get the JavaScript code defined inside of onclick.
I'm using .NET 2.0 C# Visual Studio 2005.
Example:
<span id="foo" onclick+"window.location.href='someURL'>click ...
3
votes
1answer
79 views
C# System.__ComObject returned when accessing Excel file
I am trying to access Excel file by code below:
Microsoft.Office.Interop.Excel.Application ObjExcel
= new Microsoft.Office.Interop.Excel.Application();
Microsoft.Office.Interop.Excel.Workbook book;
...
3
votes
2answers
329 views
VS2010 will not display project properties (“underlying RCW”)?
Only sometimes (I haven't yet noticed a pattern), VS2010 shows the following error (where I'd expect the body of the property page to be) when I right-click on a project (various types of projects) ...
2
votes
3answers
218 views
Regsvr32 strange behaviour = > Regsvr32 does not give any success or failure message
I have an directShow filter: MyFilter.ax
When I try to register MyFilter.ax with Regsvr32 utility it gives NO error or any message(success or failure). But the filter is not registered.
Regsvr32 ...
2
votes
1answer
317 views
IE9 RC crashes when calling IDispatch::Invoke
I have a working code that is working on IE6,7,8 & 9 Beta but crashes on IE9 RC.
I can see that the web page is using the ActiveX's interface successfully but when I try to call IDispatch::Invoke ...
2
votes
2answers
219 views
VitualBox + Powershell?
I have created a virtual machine. Now I am trying to launch it using Powershell. I have searched all over the internet for any details on how to do that. This is the only code i found...
...
1
vote
2answers
33 views
how to cast COM object type to Excel.Checkbox type
I am adding a checkbox to excel and i have issue casting a COM object of type 'System.__ComObject' to interface type 'Microsoft.Office.Interop.Excel.CheckBox', any help would be appreciated! I am ...
1
vote
1answer
39 views
Alternative to caprock.dictionary for 64-bit Windows/IIS 7.5
My company has a legacy solution, written in Classic ASP/VBScript that uses the caprock.dictionary COM object in the Application scope for storing various recordsets of data.
This works fine on ...
1
vote
1answer
511 views
Microsoft.Office.Interop.Excel not work on 64 bit
I encountered a problem when developing on Ms Visual Web Developer 2008 Express Ed.
Developing ASP.NET C# on Windows7 64 bit OS,
I'm trying to open an Excel document, but it gives me "Old format or ...
1
vote
2answers
54 views
COM coobjects and interfaces C#
I am completely new to this and am following a tutorial on msdn: http://msdn.microsoft.com/en-us/library/aa645736(v=vs.71).aspx#vcwlkcominteroppart1cclienttutorialanchor2
My question is why do we use ...
1
vote
1answer
423 views
How do you read from a multidimensional variant array returned from a COM object in PHP?
I'm working with a COM object that returns a multidimensional VARIANT array (vt_array), and I'm trying to read values from the array.
When I use print_r($mdArray) it displays variant Object.
...
1
vote
1answer
336 views
Get process ID from Com Object
It is possible to get the Process ID from this new Com Object ($ie) ?
$ie=New-Object -comobject InternetExplorer.Application
$ie.visible=$true
$ie.Navigate("www.stackoverflow.com")
1
vote
2answers
340 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
0answers
27 views
UPEK Fingerprint reader intergration with .net
I am looking for sample c# code that will allow me to scan a fingerprint using eikon finger print reader.because they have provided sample projects and dlls related to c++, i cannot use it for c# . ...
0
votes
0answers
31 views
C# - Dump Object for ComObject using dynamic?
I'm trying (without luck) to implement an "Object Dumper" for objects I'm accessing in the Office Type Library.
It must be possibly, because VS's debug window has a "dynamic view" for the ...
0
votes
0answers
6 views
trying to set a chart data source from an excell file (problem with set source data)
very simple the setsourcedata() Wouldn't accept an excel.ranage as an argument (compiler error) here is the part where the problem occurs
range = ws.Range["A1", "AE2"];
chart1 = ...
0
votes
1answer
434 views
InternetExplorer being set up as __ComObject instead of SHDocVw.InternetExplorer
I'm having a problem with the InternetExplorer in SHDocVw.dll. I also have mshtml.tlb referenced (while googling, I did read 1 comment that said I should have mshtml.dll referenced, but that this ...
0
votes
1answer
280 views
InternetExplorer Com Object, getElementById, getElementsByName and getElementsByTagName
I want to create a webtest with PowerShell.
At the moment I had a problem with a SharePoint Textbox when I create a new Calender entry.
The properties from the Field are:
Now you can see, there is ...
0
votes
1answer
169 views
PowerShell, Object = Start Process?
Hi I would like to start the Internet Explorer without extensions and control it. (Navigate to other pages, click buttons etc.)
When I use the command: "Start iexplore.exe -ArgumentList -extoff" I ...
0
votes
2answers
155 views
Delphi Application Error with Ole in a DLL
I have a Com Object, setup/create/working from a DataModule.
creating/running/freeing the Datamodule from an Application works with out an issue.
but putting the datamodule into a DLL works fine the ...
0
votes
0answers
85 views
Is there a way to create a new instance for IRequestDictionary and IStringList on .NET?
We are working on a C# DLL that stores the values of a Classic ASP Session.
Everything is okay but some QueryStrings being stored in Session. Problem is: we are able to read the QueryString from the ...
0
votes
1answer
258 views
Startup Code for Loading COM Object for WCF Service
I am currently have a WCF service that uses a COM DLL for its service. The COM object is only loaded once and saved via a singleton. The problem is the first run takes about 1 minute to load the COM ...
0
votes
1answer
521 views
Invoking method from the System.__ComObject base type
I'm trying to get some information from an msi file
I used:
Type installerType = Type.GetTypeFromProgID("WindowsInstaller.Installer");
object installerInstance = ...
0
votes
3answers
103 views
Com Object Exception
I wrote an application that loops through a set of records and prints two things.
One is a report from SSRS wich works correctly.
The other is a drawing that uses a COM object to print. The COM ...
0
votes
2answers
2k views
PowerShell Windows Installer Com Object
I'm trying to modify the contents of an MSI file using Powershell. To do so I create an instance of a WindowsInstaller.Installer then use $installer.OpenDatabase and $database.OpenView. Similar ...