Click here to Skip to main content
15,885,914 members
Home / Discussions / C#
   

C#

 
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 
AnswerRe: Query execution problen in C# program Pin
seoamitk1-Sep-09 23:37
seoamitk1-Sep-09 23:37 
QuestionHow to connect to remote sql server 2000 in Windows Services created in C# Pin
Rajesh Koriya31-Aug-09 21:56
Rajesh Koriya31-Aug-09 21:56 
AnswerRe: How to connect to remote sql server 2000 in Windows Services created in C# Pin
Tamer Oz31-Aug-09 22:31
Tamer Oz31-Aug-09 22:31 
AnswerRe: How to connect to remote sql server 2000 in Windows Services created in C# Pin
mbhosle31-Aug-09 23:08
mbhosle31-Aug-09 23:08 
QuestionStart a Service after install it ? Pin
Mohammad Dayyan31-Aug-09 21:36
Mohammad Dayyan31-Aug-09 21:36 
AnswerRe: Start a Service after install it ? Pin
Tamer Oz31-Aug-09 22:41
Tamer Oz31-Aug-09 22:41 
GeneralRe: Start a Service after install it ? Pin
Mohammad Dayyan1-Sep-09 0:46
Mohammad Dayyan1-Sep-09 0:46 
QuestionHow to stop code generator in designer in this case Pin
vql31-Aug-09 21:28
vql31-Aug-09 21:28 
QuestionHow to show a form from windows service? Pin
Tridip Bhattacharjee31-Aug-09 21:28
professionalTridip Bhattacharjee31-Aug-09 21:28 
AnswerRe: How to show a form from windows service? Pin
Vimalsoft(Pty) Ltd31-Aug-09 21:31
professionalVimalsoft(Pty) Ltd31-Aug-09 21:31 

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.