1
vote
2answers
49 views
Late binding an Object as in VBA
I am getting the "run-time error 429" in my attempt at late binding to the VBProject object:
Dim vbProj As Object
Set vbProj = CreateObject("ActiveDocument.VBProject")
Is there something …
3
votes
2answers
83 views
Is it possible to overuse late static binding in PHP?
Starting with version 5.3, PHP supports late binding for static methods. While it's an undoubtedly useful feature, there are only several cases where its use is really necessary (e.g. the Active …
0
votes
2answers
49 views
Action<T> to call a method based on a string value
Is there a way to use Action to call a method based on a string value that contains the name of that method?
1
vote
1answer
135 views
Using late binding to get a specific instance of Excel in C#
Hi all,
Just after a little help with late binding.
I am trying to late bind excel and i don't have any issues doing that. It is only when I have more than one instance of excel open where I run …
1
vote
2answers
133 views
Is there a System.Reflection.Binder (.NET) that binds to generic methods?
The following F# code fails because Type.DefaultBinder does not want to bind to the generic Id method. Is there an alternative Binder that would do this?
open System
open System.Reflection
type …
0
votes
2answers
195 views
C# Implement Late Binding for Native Code
We are working with an existing native application (most likely written in VB) that loads assemblies and calls methods with "Late Binding." We do NOT have access to its source code.
We want to …
1
vote
2answers
98 views
How to find out a COM prog id?
I'd like to access a COM library via late binding.
How can I find out its progID?
Type oClassType = Type.GetTypeFromProgID("THE MISSING PROGID");
0
votes
1answer
83 views
How to release late bound COM objects?
I guess I do have to release also late bound COM objects.
But how is this done directly?
In my situation I use the following code from C# to get the focused point from Google Earth (simplified):
…
3
votes
3answers
114 views
Need help defining an Interface in C#
I have a data driven mapping application where I need to implement custom functions as plugins. The name of the custom method that I need to execute will also be in the mapping data. I know that I can …
3
votes
4answers
140 views
How to Pass a Late Bound Parameter
In VB6, I'm trying to pass a late bound object to another form.
frmMain.vb
Dim x
Set x = CreateObject("MyOwn.Object")
Dim f as frmDialog
Set f = New frmDialog
f.SetMyOwnObject x
frmDialog
Dim y
…
2
votes
2answers
470 views
C# Assembly Loading and Late Binding
I'm reading this book on C# and .NET and I'm learning a bunch of cool stuff. I've read the part where the author talks about dynamically loading an assembly and creating an instance of a type in that …
0
votes
1answer
468 views
How to use late binding to invoke method with ByRef parameters
I have a COM component that I want to call using late-binding from VB.NET (using the painful Primary Interop Assembly - PIA method)
My IDL signature for the COM method looks like:
HRESULT …
2
votes
4answers
268 views
Using early binding on a COM object
Hello,
I have this piece of code that works very well and gives me the path the user's start menu:
Dim oShell As Object = CreateObject("Shell.Application")
…
0
votes
8answers
936 views
Cast sender object in event handler using GetType().Name
I have an event handler for a Textbox as well as for a RichTextBox.
The code is identical, but
In handler #1 i do:
RichTextBox tb = (RichTextBox)sender
In handler #2 accordingly:
TextBox tb = …
0
votes
1answer
248 views
What is the relationship between “late binding” and “inversion of control”?
In his definition of OOP, Alan Kay points out he supports "the extreme late-binding of all things". Does his interest in late-binding share the same motivation as people's interest in IoC?
In …
