1
vote
1answer
99 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 …
1
vote
2answers
121 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.R …
0
votes
2answers
173 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 cod …
1
vote
2answers
86 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
132 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
…
0
votes
1answer
73 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 Eart …
2
votes
2answers
435 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 instanc …
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 …
3
votes
3answers
110 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 dat …
0
votes
1answer
413 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: …
11
votes
8answers
686 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 t …
2
votes
4answers
242 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")
MsgBox(oShell. …
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 …
0
votes
8answers
853 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 accordingl …
5
votes
3answers
818 views
Why results of map() and list comprehension are different?
The following test fails:
#!/usr/bin/env python
def f(*args):
"""
>>> t = 1, -1
>>> f(*map(lambda i: lambda: i, t))
[1, -1]
>>> f(*( …
