Click here to Skip to main content
15,896,154 members
Home / Discussions / C#
   

C#

 
GeneralRe: Changing the fugly Setup Wizard icon in MSI files. Pin
Tony Archer7-May-04 13:54
Tony Archer7-May-04 13:54 
GeneralPassing collection via Web Services Pin
Diego F.7-May-04 8:32
Diego F.7-May-04 8:32 
GeneralRe: Passing collection via Web Services Pin
Heath Stewart7-May-04 9:40
protectorHeath Stewart7-May-04 9:40 
GeneralRe: Passing collection via Web Services Pin
Diego F.7-May-04 12:33
Diego F.7-May-04 12:33 
GeneralRe: Passing collection via Web Services Pin
Heath Stewart8-May-04 19:27
protectorHeath Stewart8-May-04 19:27 
GeneralRe: Passing collection via Web Services Pin
Dave Brighton21-Jun-04 1:15
Dave Brighton21-Jun-04 1:15 
GeneralPassing params to an embedded control in IE Pin
TigerNinja_7-May-04 8:22
TigerNinja_7-May-04 8:22 
GeneralRe: Passing params to an embedded control in IE Pin
Heath Stewart7-May-04 9:37
protectorHeath Stewart7-May-04 9:37 
First, your classid attribute should not include "http:". Use a relative path or an absolute path. Only include "http://" plus the host name if you want to use a control from another site (in which case that site needs to be configured in the Url evidence for the code access security group that must be created - all covered in my article I linked the other day.

On your class interface, declare a property of type object or IWebBrowser2 (requires that you reference the shdocvw.dll native COM server, which creates an interop assembly (default is typically Interop.SHDocVw.dll) that must be in the same directory (or if you read the documentation about the assembly binding configuration settings - you can figure out other places to put it) as the PrintConfig.dll.

Make sure you implement this property in your user control.

Then, in your .aspx page for the onload event of your OBJECT (to make sure it's loaded first, otherwise an error will occur), set that property to the window object of the web browser.

You must use a dispatch interface or the scripting engine cannot access the object model. My article I linked also covers this, as well as why auto-generated class interfaces should not be used (declare them explicitly and implement them as the first interface in your class declaration).

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: Passing params to an embedded control in IE Pin
TigerNinja_7-May-04 10:57
TigerNinja_7-May-04 10:57 
GeneralRe: Passing params to an embedded control in IE Pin
TigerNinja_18-May-04 8:34
TigerNinja_18-May-04 8:34 
GeneralRe: Passing params to an embedded control in IE Pin
Heath Stewart18-May-04 9:24
protectorHeath Stewart18-May-04 9:24 
Questionhow can I clear out null characters in a string var? Pin
djkno37-May-04 8:03
djkno37-May-04 8:03 
AnswerRe: how can I clear out null characters in a string var? Pin
Jeff Varszegi7-May-04 8:15
professionalJeff Varszegi7-May-04 8:15 
GeneralRe: how can I clear out null characters in a string var? Pin
djkno37-May-04 8:17
djkno37-May-04 8:17 
GeneralA theoretical question involving Direct3D Pin
Andres Coder7-May-04 7:59
Andres Coder7-May-04 7:59 
GeneralRe: A theoretical question involving Direct3D Pin
TigerNinja_7-May-04 8:26
TigerNinja_7-May-04 8:26 
GeneralRe: A theoretical question involving Direct3D Pin
Heath Stewart7-May-04 9:32
protectorHeath Stewart7-May-04 9:32 
GeneralRe: A theoretical question involving Direct3D Pin
Dave Brighton21-Jun-04 1:20
Dave Brighton21-Jun-04 1:20 
QuestionHow do I send messages to another form Pin
kayhustle7-May-04 7:31
kayhustle7-May-04 7:31 
AnswerRe: How do I send messages to another form Pin
CWIZO7-May-04 7:39
CWIZO7-May-04 7:39 
GeneralRe: How do I send messages to another form Pin
Jeff Varszegi7-May-04 7:45
professionalJeff Varszegi7-May-04 7:45 
GeneralRe: How do I send messages to another form Pin
kayhustle7-May-04 8:10
kayhustle7-May-04 8:10 
GeneralRe: How do I send messages to another form Pin
Heath Stewart7-May-04 9:31
protectorHeath Stewart7-May-04 9:31 
GeneralRe: How do I send messages to another form Pin
kayhustle7-May-04 9:53
kayhustle7-May-04 9:53 
GeneralStore encripted passwords Pin
DrGreen7-May-04 7:26
DrGreen7-May-04 7:26 

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.