Click here to Skip to main content
15,892,643 members
Home / Discussions / C#
   

C#

 
AnswerRe: Indexers Question [modified] Pin
Keith Barrow1-Sep-09 0:01
professionalKeith Barrow1-Sep-09 0:01 
GeneralRe: Indexers Question Pin
Programm3r1-Sep-09 0:13
Programm3r1-Sep-09 0:13 
Questionhow to export table in my word document to xml Pin
dotgnu31-Aug-09 23:30
dotgnu31-Aug-09 23:30 
AnswerRe: how to export table in my word document to xml Pin
Md. Marufuzzaman1-Sep-09 2:53
professionalMd. Marufuzzaman1-Sep-09 2:53 
QuestionSearch Active Directory Pin
Ferudun Atakan31-Aug-09 23:27
Ferudun Atakan31-Aug-09 23:27 
AnswerRe: Search Active Directory Pin
SeMartens31-Aug-09 23:28
SeMartens31-Aug-09 23:28 
AnswerRe: Search Active Directory Pin
Arun Jacob31-Aug-09 23:46
Arun Jacob31-Aug-09 23:46 
Questionone click all records update datagridview Pin
cursedsw31-Aug-09 23:21
professionalcursedsw31-Aug-09 23:21 
AnswerRe: one click all records update datagridview Pin
Jacobb Michael31-Aug-09 23:34
Jacobb Michael31-Aug-09 23:34 
GeneralRe: one click all records update datagridview Pin
cursedsw31-Aug-09 23:42
professionalcursedsw31-Aug-09 23:42 
GeneralRe: one click all records update datagridview Pin
Jacobb Michael1-Sep-09 0:04
Jacobb Michael1-Sep-09 0:04 
GeneralRe: one click all records update datagridview Pin
cursedsw1-Sep-09 0:11
professionalcursedsw1-Sep-09 0:11 
Questionparameter in Event Handler Pin
Saiyed Alam31-Aug-09 23:13
Saiyed Alam31-Aug-09 23:13 
AnswerRe: parameter in Event Handler Pin
Keith Barrow31-Aug-09 23:24
professionalKeith Barrow31-Aug-09 23:24 
GeneralRe: parameter in Event Handler Pin
Saiyed Alam31-Aug-09 23:43
Saiyed Alam31-Aug-09 23:43 
AnswerRe: parameter in Event Handler Pin
Jacobb Michael31-Aug-09 23:26
Jacobb Michael31-Aug-09 23:26 
GeneralRe: parameter in Event Handler Pin
Saiyed Alam31-Aug-09 23:44
Saiyed Alam31-Aug-09 23:44 
QuestionGMail - Can you Trace ! Pin
Jacobb Michael31-Aug-09 23:10
Jacobb Michael31-Aug-09 23:10 
Hi all,

Is there any way to track the GMAIL input values, while COMPOSSING the Mail.

i am trying like bellow but i could not get:

 void browser_BeforeNavigate2(object pDisp, ref object URL, ref object Flags, ref object TargetFrameName, ref object PostData, ref object Headers, ref bool Cancel)
        {
            browser = (SHDocVw.InternetExplorer)pDisp;
            mshtml.IHTMLDocument2 doc = (mshtml.IHTMLDocument2)browser.Document;

            document = (HTMLDocument)doc;
            IHTMLElementCollection elcol;

            elcol = document.getElementsByTagName("iframe");
foreach (IHTMLElement ielcol in elcol)
            {

                HTMLIFrame frm = (HTMLIFrame)ielcol;
                DispHTMLDocument docfrm = (DispHTMLDocument)((SHDocVw.IWebBrowser2)frm).Document;

             
                 IHTMLElementCollection elcolin = docfrm.all;
                 foreach (IHTMLElement iel in elcolin)
                 {
                     if (iel != null)
                     {
                         CreateLog(sLogPath, "IHTMLElement" + ":::" + iel.outerText + ":" +iel.outerHTML);
                         CreateLog(sLogPath, "\r\n -----------------------------------\r\n");
                         switch (iel.ToString())
                         {
                                 case "mshtml.HTMLTextAreaElementClass":
                                 mshtml.HTMLTextAreaElementClass tae = (mshtml.HTMLTextAreaElementClass)iel;
                                 if (tae != null)
                                 {
                                     CreateLog(sLogPath, "HTMLTextAreaElementClass" + ":::" + tae.type + ":" + tae.value);
                                     CreateLog(sLogPath, "\r\n -----------------------------------\r\n");
                                 }
                                 break;
                         }
                    }
               }
          }
     }


i am trying to take To,CC,BCC,Subject values while sending mail,
Can some one suggest me how to go with...

thanks in advance
QuestionHow to run multiple audio files Pin
itsmitm31-Aug-09 23:01
itsmitm31-Aug-09 23:01 
Questionspecial characters Pin
248912831-Aug-09 22:29
248912831-Aug-09 22:29 
AnswerRe: special characters Pin
OriginalGriff31-Aug-09 22:48
mveOriginalGriff31-Aug-09 22:48 
QuestionQuery execution problen in C# program Pin
Kunle Oladimeji31-Aug-09 22:24
Kunle Oladimeji31-Aug-09 22:24 
AnswerRe: Query execution problen in C# program Pin
dan!sh 31-Aug-09 22:33
professional dan!sh 31-Aug-09 22:33 
AnswerRe: Query execution problen in C# program Pin
Tamimi - Code31-Aug-09 22:39
Tamimi - Code31-Aug-09 22:39 
AnswerRe: Query execution problen in C# program Pin
Jacobb Michael31-Aug-09 23:17
Jacobb Michael31-Aug-09 23:17 

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.