|
I am using Ruby 1.8. Using the WIN32OLE module -
1) How do I determine the class name of an OLE object instance? 2) How can I tell whether an object instance supports a particular method?
In an Outlook automation script, I am trying to delete the items...
Started by bvanderw on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
How do I determine the class name of an OLE object instance?
object.ole_obj_help.name
How.
Objects...
|
|
I'm working on a project that requires me to load an OLE object and render it in a .NET WinForm app (C#). Unlike VB6 .NET has no built in OLE container, and the recomended approach is to use the WebBrowser control which supports displaying ActiveX content...
Started by Marc on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
There's an alternative mechanism suggested at Visual Studio 2005 and Visual Studio ... .
Long term, you should avoid this, OLE has no future.
But if you mean OLE Linking and Embedding somewhere.
It has a wrapper for ActiveX controls, AxHost.
|
|
I suspect that I will shortly have a need to write an "integration" library that will need to call an OLE object on Windows from Java.
I have done Java to C/C++ integration on windows before (using C/C++ and JNI) - so I'm not new to that part of the equation...
Started by Jared on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The problem with OLE is that, unless you ....
It's not clear whether you mean actual OLE (embedded/linked documents with in-place editing OLE with Visual C++ Express Edition, you just won't have the (somewhat dubious) benefits of MFC.
|
Ask your Facebook Friends
|
Hello, can anybody tell me, why the "...->{FormulaR1C1} = '=SUMME( "R[-3]C:R[-1]C" )';" doesn't work. In the Cell where should appear the result I get "#Wert!" ( maybe "Value" in English ). With the WENN(IF)-formula I get what I expect.
#!C:\Perl\bin...
Started by sid_com on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Strict; # CHANGE - empty qw caused compilation error use Win32::OLE; use Win32::OLE::Const 'Microsoft Excel'; $Win32::OLE::Warn = 3; my $xl = Win32::OLE::Const -> Load( 'Microsoft Excel' ); # CHANGE - set path my $excelfile....
|
|
In this OLE DB msdn example , (yes, it is dated 1997, but still works :)) I'm wondering what the historic point of OLE DB was if you still apparently wrote SQL to interact with the underlying datasource.
The one thing I'm thinking is if the ICommandText...
Started by bobobobo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The intent of OLE DB technology is to have a generalized way.
MS databases...
If you have different and Oracle vs.
I can vouch for the fact that there is NO translation done by OLE DB.
|
|
Ridiculous!
http://vimeo.com/35989508
Answer Snippets (Read the full thread at wakeworld):
Why nitpick? Frikkin double ole 1080 at 13 years old.
|
|
[EDIT] - with the benefit of hindsight, this question was misdirected. I have not deleted it because it is a good example of the incorrect use of eval and correct criticism by Perl::Critic .
Perl Critic raises the following criticism for the code below...
Started by heferav on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The Win32::OLE docs explain when exceptions will be thrown (and how you can automatically strict; use warnings; use Carp; use Win32; use Win32::OLE; $Win32::OLE::Warn = 3; # No need for this eval if you are OK with the....
Much sense.
|
|
An OLE Object column contains images but the image type (jpg/gif/tiff) is unknown. These images need to be extracted from the DB and saved to disk using VBscirpt.
Started by Satya on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Now the problem is how we can copy ole Image object.
That something can be done using IE/html object.
|
|
I wrote an OLE automation server (using Delphi). I usually start the OLE server manually and use it as a normal application. From time to time I start a client, which automatically connect to the existing OLE Server.
When I terminate the client, the server...
Started by Name on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
This item only appears there for an EXE-ole-server the OLE server, if it is an Exe and ....
A note about the previous post 'There is a setting afterwards in the project settings, item "ATL" .
In this article about OLE Server and VB .
|
|
Currently I am trying to execute a macro in Microsoft Access through Perl OLE
I am wondering how to properly make the call to run a macro. I have tried
1) $oDatabase -> DoCmd.RunMacro("Macro1");
2) $oDatabase -> DoCmd -> RunMacro("Macro1");
But...
Started by Dan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In Win32::OLE, methods use method syntax.
Of the Application object, and RunMacro is a method of DoCmd .
|