Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
9answers
10k 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 ...
17
votes
6answers
8k 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 ...
16
votes
9answers
2k views

Option Strict On and .NET for VB6 programmers

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 Option ...
11
votes
6answers
588 views

VB.NET: impossible to use Extension method on System.Object instance

Can I make an Extension method for all the subclasses of System.Object (everything)? Example: <Extension> Public Function MyExtension(value As Object) As Object Return value End Function ...
11
votes
5answers
782 views

Interpreted vs. Compiled vs. Late-Binding

Python is compiled into an intermediate bytecode(pyc) and then executed. So, there is a compilation followed by interpretation. However, long-time Python users say that Python is a "late-binding" ...
10
votes
3answers
495 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 ...
8
votes
3answers
1k 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(*(lambda: i for i in ...
7
votes
4answers
104 views

(Automatic) Dependency Injection Binding Mechanisms

The two common mechanisms for creating dependency injection bindings, such as through an IOC container, is from an XML configuration or a block of imperative code. In these cases, the key value pair ...
7
votes
3answers
543 views

What exactly is late-static binding in PHP?

What exactly is late-static binding in PHP?
6
votes
2answers
71 views

How do I consume events from a late-bound COM object?

I have a late-bound COM object (My.COMInterface) which raises an event when it has finished processing. How do I consume that event from VB6 code? If I was early-binding, I would declare my COM ...
6
votes
5answers
2k views

Double dispatch/multimethods in C++

I have a question on C++ double dispatch. In the code below, I want the results from the second set to match the results from the first set. I don't know the actual type (unless I try dynamic_cast) ...
5
votes
2answers
322 views

WebBrowser Issue with Late Bind object/property names

There are issue with using WebBrowser late bind calls related to object/property names generation. For example: WebBrowser1.Document.DomDocument.Forms.Myform.mycontrol.Value = "test" will fail ...
5
votes
6answers
482 views

C# - Disable Dynamic Keyword

Is there any way to disable the use of the "dynamic" keyword in .net 4? I thought the Code Analysis feature of VS2010 might have a rule to fail the build if the dynamic keyword is used but I ...
4
votes
1answer
157 views

PHPDoc and late (static or dynamic) binding

Most PHP IDEs rely on phpdoc to get hints about the type of an expression. Yet, I use frequently this pattern, which doesn't seem to be covered: class Control { private $label = ''; /** ...
4
votes
2answers
82 views

How do you instantiate an object that is not included in your C# project?

Note: All sample code is greatly simplified. I have a DLL defined as: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Web; ...
4
votes
1answer
348 views

Late Binding vs. Polymorphism - what is the difference?

I've seen both used interchangebly but do they really mean the same? From my understanding, Polymorphism stretches the fact that you could exchange an instance of a class by an instance of a subclass, ...
4
votes
2answers
322 views

late binding in C

How can late binding can be achieved in c language? can anybody please provide an example. i think it can be achieved using dlopen and dlsym but i am not sure about it.please correct me if i am ...
4
votes
4answers
321 views

Problem with late binding!

i was asked this question in an interview. late binding is dynamically identifying the symbol during the runtime as far as my knowledge is concerned.please correct me if i am wrong. i was asked a ...
4
votes
2answers
648 views

How do I dynamically load raw assemblies that contains unmanaged code?(bypassing 'Unverifiable code failed policy check' exception)

I'm going to give an example of using System.Data.SQLite.DLL which is a mixed assembly with unmanaged code: If I execute this : var assembly= Assembly.LoadFrom("System.Data.SQLite.DLL") No ...
3
votes
4answers
66 views

Difference between Reflection and Late Binding in java with real time examples

While studying Java tutorials, Reflection and Late Binding have confused me. In some tutorials, they have written that they are both the same, and that there isn't any difference between Reflection ...
3
votes
2answers
45 views

Late binding to a library with “extern” defined variables

I'm trying to late bind my program to a DLL. I know how to import its methods but in one its header files, I have a definition like this: EXTERN_C const IID SomeVariable; How can I refer to this ...
3
votes
1answer
193 views

how to implement LateBinding in C#

I'm having a general class in that class i've written one method which should accept the object class's object as parameter. the function is as follows- protected void AddNewForm(object o ) { ...
3
votes
2answers
253 views

Late binding of word in C#

Hi Could some one help me on this problem: I am developing an application which need to interact with 2003, 2007, 2010 versions of MSword and PPT. I read some articles and found that Late binding is ...
3
votes
3answers
91 views

Why is this Java method polymorphing by declared type and not runtime type?

This code: public class PMTest { private static class Runner { } private static class Server extends Runner { } private static class Task { public void delegate(Runner ...
3
votes
4answers
192 views

How to force calling only superclass's methods despite that they have been overridden (in Ocaml)

To be honest, I don't know much about OCaml's object system. The following snippet illustrates my problem: class foo = object (o) method foo1 y = print_endline "foo1"; o#foo2 (y - ...
3
votes
2answers
164 views

Which is the proper way to work with LateBinding in Delphi?

actually i am using late-binding in delphi, and i need to know wich is the proper way to work with it. My principal concern is about how I handle the memory used by these objects, I must free the ...
3
votes
1answer
936 views

Delphi CreateOleObject events

there is a code var myobject:OleVariant; begin myobject:=CreateOleObject('SomeNamespace.SomeClass'); end; this com object has event OnClick for example. How must I connect to them without ...
3
votes
3answers
156 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
382 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
139 views

How do I call a VB6 COM object from C# with dynamic when it has a ref parameter?

I have the following legacy VB6 function that I want to call from C#. Public Function CreateMiscRepayment(ByRef objMiscRepayment As MiscRepayment) As Variant ' Code that sets objMiscRepayment here ...
2
votes
3answers
102 views

Dynamically bind method to selector at runtime

I want to programmatically associate code with selectors. I am not clear on how to do that in Objective C. In Ruby, I might override method_missing. In Common Lisp, I might define a macro. In ...
2
votes
3answers
73 views

Are there any cases where you have to use early-binding/inline event attribute in HTML/JavaScript

In my answer to the following SO question: What does event binding mean?, I made a passing remark that the use of inline-JavaScript/Early-Binding to bind JavaScript Events was 'often misguided' For ...
2
votes
1answer
37 views

Linq latter processing behavior

In this situation: var allCustomers = from c in customers select c; var oldCustomers = from o in allCustomers where o.age > 70 select o; Will where clause reach database?
2
votes
1answer
218 views

How do I access late bound nested properties and methods?

I want to know what is the proper way to access a late bound property or method from Delphi when the property to access is nested inside another property. Let me explain. Check this sample ...
2
votes
1answer
345 views

How to utilize C# attributes and reflection to inject/force late bindings on marked objects?

I love design patterns, the problem is that some can be really tedious to implement. For example, decorating an object that has 20+ members is just plain annoying. So, I wanted to create a nice ...
2
votes
1answer
154 views

Late-bound version of RegisterInstance in Unity

In our project, we use Unity as a dependency injection framework. Now I am faced with a situation, where I need a late-bound version of IUnityContainer.RegisterInstance(). In ninject, the code I am ...
2
votes
6answers
1k views

C# dll's plugin-architecture

I have a program that i developed to use a basic plugin architecture. Effectively, when the program loads it uses reflection to search the directory for dll's that fit a certain interface and then ...
2
votes
4answers
341 views

Why should I prefer OSGi Services over exported packages?

I am trying to get my head around OSGi Services. The main question I keep asking myself is: What's the benefit of using services instead of working with bundles and their exported packages? As far as ...
2
votes
1answer
657 views

Using late binding to get a specific instance of Excel in C#

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 into some ...
2
votes
2answers
1k 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
1k views

Using early binding on a COM object

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.NameSpace(11).Self.Path) ...
2
votes
7answers
7k 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 = ...
2
votes
3answers
4k 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 CreateObject? For ...
1
vote
2answers
36 views

Can I use late binding to check the existence of a library before using it via early binding?

I like to use early binding in my VBA projects, since I like the auto-complete of method names, etc. during development. I also like the confidence of knowing that the compiler will warn me if I've ...
1
vote
1answer
31 views

Late-bound invocation of private member throws a MethodAccessException

I have an annoying situation where the late bound invocation of a method throws a MethodAccessException even though I run the code in full trust. The situation is as follows: I have a base class, ...
1
vote
1answer
42 views

Late Binding C++ DLL to C# - Function always returns true

I have an DLL that has this in its h file: extern "C" __declspec(dllexport) bool Connect(); and in the c file: extern "C" __declspec(dllexport) bool Connect() { return false; } In c# i ...
1
vote
2answers
76 views

Is static late binding necessary to overload static variables?

A friend of mine asked me whether he can override a static variable in Java and I was shocked that he even thought about such a weird way of coding. Then he explained me that this is possible in PHP ...
1
vote
0answers
44 views

programming late binding

I have a situation which is very similar to late binding in programming languages, i work for a javaee based enterprise software shop. All the happenings in the programming universe makes me think ...
1
vote
5answers
238 views

PHP: how to get a static property of an instance

I must be overlooking something stupid, but, if I have an instance in PHP, what's the easiest way to get to a static property ('class variable') of that instance ? This ...
1
vote
2answers
306 views

Adding a Row to Table of Late Bound MS Word

I do need to add a row to a table on late bounded MS Word. Please see my code here... On code you can see I have to implement code for function "public void AddNewRow(int tableId)" Here I do need to ...

1 2