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 …
1
vote
1answer
104 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
125 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
1answer
431 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: …
0
votes
2answers
178 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
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
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 …
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 …
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 …
2
votes
4answers
246 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. …
0
votes
8answers
876 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 …
0
votes
1answer
245 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 …
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 …
