Click here to Skip to main content
16,014,392 members
Home / Discussions / C#
   

C#

 
GeneralRe: mouse events when the mouse is on a "child control" Pin
GflPower27-Jul-05 13:42
GflPower27-Jul-05 13:42 
GeneralRe: mouse events when the mouse is on a "child control" Pin
badr zrari27-Jul-05 14:16
badr zrari27-Jul-05 14:16 
GeneralSerialization Technique Pin
Anonymous27-Jul-05 13:32
Anonymous27-Jul-05 13:32 
GeneralRe: Serialization Technique Pin
Christian Graus27-Jul-05 16:01
protectorChristian Graus27-Jul-05 16:01 
GeneralInternet Explorer Login screen Cancel button Pin
llamaindustries27-Jul-05 13:29
llamaindustries27-Jul-05 13:29 
GeneralCapturing Web Browser Navigation Error... Pin
rcurrie27-Jul-05 13:15
rcurrie27-Jul-05 13:15 
GeneralRe: Capturing Web Browser Navigation Error... Pin
llamaindustries27-Jul-05 13:45
llamaindustries27-Jul-05 13:45 
GeneralRe: Capturing Web Browser Navigation Error... Pin
rcurrie27-Jul-05 14:02
rcurrie27-Jul-05 14:02 
Sorry, simple solution...the implimentation escaped me. :P Here's the updated version...

private void item_DoubleClick(object sender, System.EventArgs e)<br />
{<br />
Node selNode = this.item.SelectedNode;<br />
if (selNode != null)<br />
{<br />
<br />
Tag tag = (Tag)selNode.Tag;<br />
if (tag.type == TYPE.FILE)<br />
{<br />
//load this item into the browser.<br />
string url = tag.url;<br />
<br />
if (url != "")<br />
{<br />
Shell shell = (Shell)this.ParentForm;<br />
<br />
shell.WB.NavigateError += new AxSHDocVw.DWebBrowserEvents2_NavigateErrorEventHandler(WB_NavigateError);<br />
						<br />
Object nobj=null;<br />
string urlval=url;<br />
<br />
shell.WB.Navigate(url,ref nobj,ref nobj,ref nobj,ref nobj);<br />
if (shell.RTC!=null)<br />
{<br />
shell.RTC.SendMsg("URL:" + urlval);<br />
}<br />
}<br />
}<br />
}<br />
}<br />
<br />
private void WB_NavigateError(object sender, AxSHDocVw.DWebBrowserEvents2_NavigateErrorEvent e)<br />
		{<br />
			Console.WriteLine("CANNOT NAVIGATE");<br />
		}<br />


~rcurrie
GeneralAnother regex Pin
eggie527-Jul-05 12:19
eggie527-Jul-05 12:19 
GeneralRe: Another regex Pin
Christian Graus27-Jul-05 13:05
protectorChristian Graus27-Jul-05 13:05 
GeneralRe: Another regex Pin
eggie528-Jul-05 6:35
eggie528-Jul-05 6:35 
GeneralRe: Another regex Pin
Christian Graus28-Jul-05 15:20
protectorChristian Graus28-Jul-05 15:20 
GeneralRe: Another regex Pin
eggie529-Jul-05 6:59
eggie529-Jul-05 6:59 
GeneralRe: Another regex Pin
eggie529-Jul-05 7:07
eggie529-Jul-05 7:07 
GeneralRe: Another regex Pin
Christian Graus31-Jul-05 13:20
protectorChristian Graus31-Jul-05 13:20 
GeneralBeep on selected node event Pin
WetRivrRat27-Jul-05 11:55
WetRivrRat27-Jul-05 11:55 
GeneralRe: Beep on selected node event Pin
[Marc]27-Jul-05 12:14
[Marc]27-Jul-05 12:14 
GeneralCarriage Return for Outlook Pin
samoore27-Jul-05 11:40
samoore27-Jul-05 11:40 
GeneralRe: Carriage Return for Outlook Pin
Matt Gerrans27-Jul-05 12:50
Matt Gerrans27-Jul-05 12:50 
GeneralRe: Carriage Return for Outlook Pin
samoore28-Jul-05 3:53
samoore28-Jul-05 3:53 
GeneralRe: Carriage Return for Outlook Pin
Anonymous27-Jul-05 13:07
Anonymous27-Jul-05 13:07 
GeneralRe: Carriage Return for Outlook Pin
samoore28-Jul-05 3:55
samoore28-Jul-05 3:55 
GeneralThe current index in the foreach Pin
cazzz27-Jul-05 10:32
cazzz27-Jul-05 10:32 
GeneralRe: The current index in the foreach Pin
jan larsen27-Jul-05 10:49
jan larsen27-Jul-05 10:49 
GeneralRe: The current index in the foreach Pin
cazzz27-Jul-05 11:01
cazzz27-Jul-05 11:01 

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.