0
votes
2answers
44 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
80 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
47 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
124 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
129 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
188 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
92 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");
3
votes
4answers
137 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
459 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 …
2
votes
4answers
2k views
Does C# .NET support IDispatch late binding?
The Question
My question is: Does C# nativly support late-binding IDispatch?
Pretend i'm trying to automate Office, while being compatible with whatever version the customer has installed.
In …
0
votes
1answer
77 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):
…
0
votes
1answer
453 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 …
3
votes
3answers
113 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 …
10
votes
8answers
707 views
Option Strict On and .NET for VB6 programmers
Hi,
I'm preparing a class on Visual Basic 2005 targeting Visual Basic 6 programmers migrating to the .NET platform.
I would like a word of advice about whether to recommend them to always enable …
15
votes
9answers
2k views
Lexical closures in Python
While I was investigating a problem I had with lexical closures in Javascript code, I came along this problem in Python:
flist = []
for i in xrange(3):
def func(x): return x * i
…
