Click here to Skip to main content
15,889,527 members
Home / Discussions / C#
   

C#

 
GeneralUI control components for .Net Pin
ppp0018-Feb-05 23:16
ppp0018-Feb-05 23:16 
GeneralRe: UI control components for .Net Pin
Colin Angus Mackay8-Feb-05 23:58
Colin Angus Mackay8-Feb-05 23:58 
Generalmapi components for .net Pin
ppp0018-Feb-05 23:13
ppp0018-Feb-05 23:13 
QuestionHow to add Check Boxes for Extra Column in a DataGrid? Pin
pubududilena8-Feb-05 20:32
pubududilena8-Feb-05 20:32 
AnswerRe: How to add Check Boxes for Extra Column in a DataGrid? Pin
Christian Graus9-Feb-05 9:37
protectorChristian Graus9-Feb-05 9:37 
Generalget URL !!!! Pin
students552 university8-Feb-05 19:41
students552 university8-Feb-05 19:41 
GeneralRe: get URL !!!! Pin
Anonymous9-Feb-05 7:13
Anonymous9-Feb-05 7:13 
GeneralRe: get URL !!!! Pin
Heath Stewart9-Feb-05 15:04
protectorHeath Stewart9-Feb-05 15:04 
If you're hosting the WebBrowser control in your Windows Forms application, get the LocationURL property. If you want to get the URL from a running instance of Internet Explorer, you can use the InternetExplorerClass from shdocvw.dll by creating an RCW (Runtime Callable Wrapper, or "interop assembly") like so:
tlbimp /out:Interop.SHDocVw.dll %windir%\system32\shdocvw.dll
You can also create this in VS.NET by adding a reference to your project, click on the COM tab, and find "Microsoft Internet Controls". You can then do something like this:
InternetExplorerClass ie = new InternetExplorerClass();
return ie.LocationURL;
There are rules regarding this property and what can retrieve the value, so you should read about it in the MSDN Library[^].

This posting is provided "AS IS" with no warranties, and confers no rights.

Software Design Engineer
Developer Division Sustained Engineering
Microsoft

[My Articles] [My Blog]
GeneralRe: get URL !!!! Pin
students552 university11-Feb-05 6:54
students552 university11-Feb-05 6:54 
GeneralRe: get URL !!!! Pin
Heath Stewart11-Feb-05 7:03
protectorHeath Stewart11-Feb-05 7:03 
GeneralIContextMenu Shell Extension - HandleMenuMsg Pin
LoKi_za8-Feb-05 19:38
LoKi_za8-Feb-05 19:38 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
Wraith29-Feb-05 1:33
Wraith29-Feb-05 1:33 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
LoKi_za9-Feb-05 1:42
LoKi_za9-Feb-05 1:42 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
Wraith29-Feb-05 2:26
Wraith29-Feb-05 2:26 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
LoKi_za9-Feb-05 2:35
LoKi_za9-Feb-05 2:35 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
Wraith29-Feb-05 3:10
Wraith29-Feb-05 3:10 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
LoKi_za9-Feb-05 4:08
LoKi_za9-Feb-05 4:08 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
Wraith29-Feb-05 4:28
Wraith29-Feb-05 4:28 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
LoKi_za9-Feb-05 4:34
LoKi_za9-Feb-05 4:34 
GeneralRe: IContextMenu Shell Extension - HandleMenuMsg Pin
Wraith29-Feb-05 4:50
Wraith29-Feb-05 4:50 
GeneralVideo in mpeg Pin
ongo8-Feb-05 19:28
ongo8-Feb-05 19:28 
GeneralRe: Video in mpeg Pin
Heath Stewart9-Feb-05 14:53
protectorHeath Stewart9-Feb-05 14:53 
Generalmultithreading Pin
Titli8-Feb-05 18:59
Titli8-Feb-05 18:59 
GeneralRe: multithreading Pin
Dave Kreskowiak9-Feb-05 6:25
mveDave Kreskowiak9-Feb-05 6:25 
QuestionHow to get Paragraph leading? Pin
sachinkalse8-Feb-05 18:23
sachinkalse8-Feb-05 18:23 

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.