Click here to Skip to main content
15,891,828 members
Home / Discussions / C#
   

C#

 
GeneralRe: dynamically add/remove reference for a specific configuration Pin
Daniel Turini23-Apr-04 14:21
Daniel Turini23-Apr-04 14:21 
GeneralRe: dynamically add/remove reference for a specific configuration Pin
leppie23-Apr-04 20:55
leppie23-Apr-04 20:55 
Questionclicking an anchor (link) with AxWebBrowser? Pin
synthmusic23-Apr-04 12:22
synthmusic23-Apr-04 12:22 
AnswerRe: clicking an anchor (link) with AxWebBrowser? Pin
Heath Stewart23-Apr-04 15:59
protectorHeath Stewart23-Apr-04 15:59 
GeneralRe: clicking an anchor (link) with AxWebBrowser? Pin
Anonymous26-Apr-04 8:58
Anonymous26-Apr-04 8:58 
GeneralRe: clicking an anchor (link) with AxWebBrowser? Pin
Heath Stewart26-Apr-04 9:24
protectorHeath Stewart26-Apr-04 9:24 
GeneralRe: clicking an anchor (link) with AxWebBrowser? Pin
Anonymous26-Apr-04 10:04
Anonymous26-Apr-04 10:04 
GeneralRe: clicking an anchor (link) with AxWebBrowser? Pin
Heath Stewart26-Apr-04 10:08
protectorHeath Stewart26-Apr-04 10:08 
click is not a member of the IHTMLLinkElement interface, and the interop interface (the RCW) does not inherit like it does in COM, which works a little differently than in languages like C# (the .NET Framework in general, actually).

Technically, it's not the interface that is inheritted anyway, but that the coclass for that interface implements the IHTMLElement interface as well, both of which inherit from IDispatch (sorry, I should have been more technical).

When you do this in scripting, methods of IDispatch are actually used to find and invoke the member, like click. Typically in cases like this, however, the interfaces do actually inherit from their parent or earlier interfaces. It all pretty much results in the same behavior, though.

 

Microsoft MVP, Visual C#
My Articles
GeneralCreating a database manager Pin
showboat202323-Apr-04 12:00
showboat202323-Apr-04 12:00 
GeneralRe: Creating a database manager Pin
Heath Stewart23-Apr-04 15:56
protectorHeath Stewart23-Apr-04 15:56 
GeneralPassing a Class instance to a method... Pin
hammackj23-Apr-04 10:38
hammackj23-Apr-04 10:38 
GeneralRe: Passing a Class instance to a method... Pin
Heath Stewart23-Apr-04 10:41
protectorHeath Stewart23-Apr-04 10:41 
GeneralRe: Passing a Class instance to a method... Pin
hammackj23-Apr-04 10:51
hammackj23-Apr-04 10:51 
GeneralRe: Passing a Class instance to a method... Pin
Werdna23-Apr-04 16:32
Werdna23-Apr-04 16:32 
GeneralRe: Passing a Class instance to a method... Pin
Heath Stewart24-Apr-04 8:14
protectorHeath Stewart24-Apr-04 8:14 
GeneralDrawString strange problem Pin
_Comet_Keeper_23-Apr-04 10:20
_Comet_Keeper_23-Apr-04 10:20 
GeneralRe: DrawString strange problem Pin
Heath Stewart23-Apr-04 10:45
protectorHeath Stewart23-Apr-04 10:45 
QuestionHow can I do Word Wrap in ListBox Items Pin
BinalShah23-Apr-04 10:12
BinalShah23-Apr-04 10:12 
AnswerRe: How can I do Word Wrap in ListBox Items Pin
Heath Stewart23-Apr-04 10:38
protectorHeath Stewart23-Apr-04 10:38 
QuestionHow to cut video to images by C# Pin
MDM_RVS23-Apr-04 8:25
MDM_RVS23-Apr-04 8:25 
AnswerRe: How to cut video to images by C# Pin
Heath Stewart23-Apr-04 10:34
protectorHeath Stewart23-Apr-04 10:34 
QuestionHow to display the next Record's autonumber in the form? Pin
Anonymous23-Apr-04 8:07
Anonymous23-Apr-04 8:07 
AnswerRe: How to display the next Record's autonumber in the form? Pin
Heath Stewart23-Apr-04 10:31
protectorHeath Stewart23-Apr-04 10:31 
GeneralRe: How to display the next Record's autonumber in the form? Pin
Anonymous23-Apr-04 23:50
Anonymous23-Apr-04 23:50 
GeneralRe: How to display the next Record's autonumber in the form? Pin
Heath Stewart24-Apr-04 8:12
protectorHeath Stewart24-Apr-04 8:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.