Click here to Skip to main content
15,886,199 members
Home / Discussions / C#
   

C#

 
AnswerRe: reading and placing in textarea Pin
J4amieC25-Apr-06 3:34
J4amieC25-Apr-06 3:34 
AnswerRe: reading and placing in textarea Pin
CWIZO25-Apr-06 3:35
CWIZO25-Apr-06 3:35 
QuestionPassing Window Form Controls as method argument Pin
abhinish25-Apr-06 3:28
abhinish25-Apr-06 3:28 
AnswerRe: Passing Window Form Controls as method argument Pin
Le centriste25-Apr-06 3:41
Le centriste25-Apr-06 3:41 
AnswerRe: Passing Window Form Controls as method argument Pin
Paul Brower25-Apr-06 5:03
Paul Brower25-Apr-06 5:03 
QuestionCapturing Browser data in Windows Application Pin
nw.knowledge25-Apr-06 3:09
nw.knowledge25-Apr-06 3:09 
AnswerRe: Capturing Browser data in Windows Application Pin
J4amieC25-Apr-06 3:29
J4amieC25-Apr-06 3:29 
QuestionRe: Capturing Browser data in Windows Application Pin
nw.knowledge25-Apr-06 19:58
nw.knowledge25-Apr-06 19:58 
How to register the BHO to work with the browser. ?? I am registering it with regasm option. Does the GUID need to be generated a new or it works when copied form the sample of Autosig. I specify the GUID as shown below

namespace ClassLibrary1
{
// Import IObjectWithSite interface
[
ComVisible(true),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
Guid("FC4801A3-2BA9-11CF-A229-00AA003D7352")
]

public interface IObjectWithSite
{
[PreserveSig]
void SetSite([In ,MarshalAs(UnmanagedType.IUnknown)] object pUnkSite);
[PreserveSig]
//void GetSite(ref Guid riid, [MarshalAs(UnmanagedType.IUnknown)] out object ppvSite);
void GetSite(ref Guid guid, out IntPtr ppvSite);
}

///
/// Definition for the BHO class that will be instantiated by the browser.
/// IE will be looking for the IObjectWithSite interface to invoke SetSite()
/// and pass this component the container site.
///

[
ComVisible(true),
ClassInterfaceAttribute(ClassInterfaceType.None),
GuidAttribute("5ADEFB9E-B824-45e6-86E2-2B7941F5D6A3")
]

public class ClassLibrary1: IObjectWithSite
{
}


And how can i know after registeration that my dll has been registered. ??

Please confirm / correct my understanding

Thanks and Regards
nwknowledge

-- modified at 2:14 Wednesday 26th April, 2006
QuestionDatagrid TextBox becomes dropdownlist on Edit/Update Pin
cppdotnet25-Apr-06 2:55
cppdotnet25-Apr-06 2:55 
QuestionProblem with deleting a row from a sorted DataGrid Pin
Larantz25-Apr-06 2:30
Larantz25-Apr-06 2:30 
AnswerRe: Problem with deleting a row from a sorted DataGrid Pin
Robert Rohde25-Apr-06 3:29
Robert Rohde25-Apr-06 3:29 
QuestionChange active database in runtime Pin
siliconesoul25-Apr-06 2:29
siliconesoul25-Apr-06 2:29 
AnswerRe: Change active database in runtime Pin
Le centriste25-Apr-06 3:43
Le centriste25-Apr-06 3:43 
GeneralRe: Change active database in runtime Pin
siliconesoul25-Apr-06 8:19
siliconesoul25-Apr-06 8:19 
GeneralRe: Change active database in runtime Pin
Le centriste25-Apr-06 9:13
Le centriste25-Apr-06 9:13 
Questionimage rotation with link Pin
Amalarajan25-Apr-06 2:20
Amalarajan25-Apr-06 2:20 
QuestionDelegate .Invoke method problem Pin
danchester25-Apr-06 2:14
danchester25-Apr-06 2:14 
Questionintegration Collection Pin
ashishnagar125-Apr-06 2:04
ashishnagar125-Apr-06 2:04 
QuestionGenerate rdlc file dynamically Pin
Bobby88725-Apr-06 1:29
Bobby88725-Apr-06 1:29 
QuestionSystem tray icon Pin
VanEtienne25-Apr-06 1:27
VanEtienne25-Apr-06 1:27 
AnswerRe: System tray icon Pin
CWIZO25-Apr-06 2:30
CWIZO25-Apr-06 2:30 
AnswerRe: System tray icon Pin
Aaron Dilliard25-Apr-06 3:57
Aaron Dilliard25-Apr-06 3:57 
AnswerRe: System tray icon Pin
Graham Nimbley25-Apr-06 9:39
Graham Nimbley25-Apr-06 9:39 
QuestionWindows based Querry Pin
meer_Lx25-Apr-06 1:24
meer_Lx25-Apr-06 1:24 
AnswerRe: Windows based Querry Pin
Guffa25-Apr-06 1:30
Guffa25-Apr-06 1:30 

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.