Click here to Skip to main content
15,894,540 members
Home / Discussions / C#
   

C#

 
Generalras idle timeout Pin
David Le Bas15-Oct-02 3:09
sussDavid Le Bas15-Oct-02 3:09 
QuestionRichTextBox > HTML? MailFormat.RTF? Pin
rendle15-Oct-02 2:53
rendle15-Oct-02 2:53 
AnswerRe: RichTextBox > HTML? MailFormat.RTF? Pin
Stephane Rodriguez.15-Oct-02 2:59
Stephane Rodriguez.15-Oct-02 2:59 
GeneralProblem with frames using .NET & webbrowser control Pin
GriffonRL14-Oct-02 23:14
GriffonRL14-Oct-02 23:14 
GeneralRe: Problem with frames using .NET & webbrowser control Pin
Stephane Rodriguez.15-Oct-02 0:36
Stephane Rodriguez.15-Oct-02 0:36 
GeneralRe: Problem with frames using .NET & webbrowser control Pin
GriffonRL15-Oct-02 1:01
GriffonRL15-Oct-02 1:01 
GeneralRe: Problem with frames using .NET & webbrowser control Pin
Stephane Rodriguez.15-Oct-02 2:58
Stephane Rodriguez.15-Oct-02 2:58 
GeneralRe: Problem with frames using .NET & webbrowser control Pin
GriffonRL15-Oct-02 4:35
GriffonRL15-Oct-02 4:35 
Yep !

Here is the solution working with frames Wink | ;) :

<br />
private void documentComplete(object sender, AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent e){<br />
 SHDocVw.IWebBrowser2 Frame;<br />
 IHTMLDocument3 Doc;<br />
 IHTMLDOMChildrenCollection Tags;<br />
 IHTMLElement Tag;<br />
 int NumTags;<br />
<br />
 Console.WriteLine("URL: "+e.uRL);<br />
 try{<br />
  Frame=(SHDocVw.IWebBrowser2)e.pDisp;<br />
  if(Frame!=null){<br />
   Doc=(IHTMLDocument3)Frame.Document;<br />
   Console.WriteLine("Document URL: " (IHTMLDocument2)Doc).location.href);<br />
   if(Doc!=null){<br />
    Tags=(IHTMLDOMChildrenCollection)Doc.childNodes;<br />
    if(Tags!=null){<br />
     NumTags=Tags.length;<br />
     for(int i=0;i<NumTags;i++){<br />
      Tag=(IHTMLElement)Tags.item(i);<br />
      if(Tag!=null) traverseDOM(Tag);<br />
      }<br />
     }<br />
    }<br />
   }<br />
  }<br />
 catch(Exception ex){<br />
  Console.WriteLine("F***: "+ex.ToString());<br />
  }<br />
 }<br />


Enjoy,

R. L.
GeneralRe: Problem with frames using .NET & webbrowser control Pin
Stephane Rodriguez.15-Oct-02 4:56
Stephane Rodriguez.15-Oct-02 4:56 
GeneralRe: Problem with frames using .NET & webbrowser control Pin
Andrew Connell15-Oct-02 5:57
Andrew Connell15-Oct-02 5:57 
GeneralRe: Problem with frames using .NET & webbrowser control Pin
GriffonRL15-Oct-02 9:36
GriffonRL15-Oct-02 9:36 
GeneralRe: Problem with frames using .NET & webbrowser control Pin
Stephane Rodriguez.15-Oct-02 10:06
Stephane Rodriguez.15-Oct-02 10:06 
GeneralIPC Pin
CSharpDavid14-Oct-02 12:22
CSharpDavid14-Oct-02 12:22 
GeneralRe: IPC Pin
Stephane Rodriguez.15-Oct-02 0:45
Stephane Rodriguez.15-Oct-02 0:45 
GeneralSelf describing functions Pin
IanC14-Oct-02 11:38
IanC14-Oct-02 11:38 
GeneralRe: Self describing functions Pin
Marc Clifton14-Oct-02 12:11
mvaMarc Clifton14-Oct-02 12:11 
GeneralRe: Self describing functions Pin
Anonymous14-Oct-02 22:23
Anonymous14-Oct-02 22:23 
GeneralRe: Self describing functions Pin
Marc Clifton15-Oct-02 1:27
mvaMarc Clifton15-Oct-02 1:27 
QuestionGetting Current Date? Pin
afronaut14-Oct-02 9:28
afronaut14-Oct-02 9:28 
AnswerRe: Getting Current Date? Pin
Stephane Rodriguez.14-Oct-02 9:42
Stephane Rodriguez.14-Oct-02 9:42 
GeneralRe: Getting Current Date? Pin
afronaut14-Oct-02 9:58
afronaut14-Oct-02 9:58 
GeneralRe: Getting Current Date? Pin
leppie14-Oct-02 10:45
leppie14-Oct-02 10:45 
GeneralRe: Getting Current Date? Pin
afronaut14-Oct-02 11:10
afronaut14-Oct-02 11:10 
GeneralRe: Getting Current Date? Pin
Daniel Turini15-Oct-02 2:10
Daniel Turini15-Oct-02 2:10 
AnswerRe: Getting Current Date? Pin
Anonymous14-Oct-02 10:05
Anonymous14-Oct-02 10:05 

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.