Tagged Questions

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 …
11
votes
8answers
694 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 …
5
votes
3answers
824 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(*( …
3
votes
3answers
111 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 …
3
votes
4answers
135 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 …
2
votes
2answers
450 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
248 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. …
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 …
2
votes
3answers
1k views

Question about CreateObject() in VB6 / VBA

I can do this: Dim fso As New FileSystemObject or I can do this: Dim fso As Object Set fso = CreateObject("Scripting.FileSystemObject") How do I know what string to use for C …
1
vote
1answer
106 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
126 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 …
1
vote
2answers
88 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
2answers
180 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 …
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 …
0
votes
1answer
433 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: …

1 2 next
15 30 50 per page