Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
GeneralRe: Open Close Connection Every-time Pin
Anubhava Dimri26-Mar-11 0:14
Anubhava Dimri26-Mar-11 0:14 
GeneralRe: Open Close Connection Every-time Pin
OriginalGriff26-Mar-11 0:16
mveOriginalGriff26-Mar-11 0:16 
AnswerRe: Open Close Connection Every-time Pin
PIEBALDconsult26-Mar-11 3:47
mvePIEBALDconsult26-Mar-11 3:47 
QuestionIssue with App Settings (Settings.setting & user.config) and version info Pin
SledgeHammer0125-Mar-11 14:08
SledgeHammer0125-Mar-11 14:08 
AnswerRe: Issue with App Settings (Settings.setting & user.config) and version info Pin
SledgeHammer0125-Mar-11 14:20
SledgeHammer0125-Mar-11 14:20 
GeneralRe: Issue with App Settings (Settings.setting & user.config) and version info Pin
GenJerDan26-Mar-11 14:08
GenJerDan26-Mar-11 14:08 
QuestionGmail inbox retrive Pin
Md. Shamiul Islam Hiron25-Mar-11 12:52
Md. Shamiul Islam Hiron25-Mar-11 12:52 
AnswerRe: Gmail inbox retrive Pin
shivamkalra25-Mar-11 13:38
shivamkalra25-Mar-11 13:38 
You can use webbrowser control. Make it login automatically when program starts. Or you could even use outlook APIs..not sure about it though. But I've used auto login using browser control. take a look at code below. I used this code to automate login for gmail only. But it will stop working if google changes their source codes.

Login.Enabled = false;
brs = new WebBrowser();
            HtmlElement idBox = brs.Document.GetElementById("Email");
            HtmlElement passBox = brs.Document.GetElementById("Passwd");
            idBox.InnerText = ID.Text; // Text box
            passBox.InnerText = PASS.Text; // Text box
            HtmlElement button = brs.Document.GetElementById("signIn");
            button.InvokeMember("click");

GeneralRe: Gmail inbox retrive Pin
Keith Barrow25-Mar-11 13:47
professionalKeith Barrow25-Mar-11 13:47 
AnswerRe: Gmail inbox retrive Pin
Keith Barrow25-Mar-11 13:45
professionalKeith Barrow25-Mar-11 13:45 
GeneralRe: Gmail inbox retrive Pin
shivamkalra26-Mar-11 7:42
shivamkalra26-Mar-11 7:42 
AnswerRe: Gmail inbox retrive Pin
Ganesh Kumar Kaki13-Apr-11 2:51
Ganesh Kumar Kaki13-Apr-11 2:51 
Questionget HTML elements with C# in ASP.NET Pin
msqar25-Mar-11 9:51
msqar25-Mar-11 9:51 
AnswerWrong Forum Pin
Keith Barrow25-Mar-11 13:51
professionalKeith Barrow25-Mar-11 13:51 
QuestionWhat is the mistake with this code??? Pin
shivamkalra25-Mar-11 7:34
shivamkalra25-Mar-11 7:34 
AnswerRe: What is the mistake with this code??? Pin
Luc Pattyn25-Mar-11 7:44
sitebuilderLuc Pattyn25-Mar-11 7:44 
GeneralRe: What is the mistake with this code??? Pin
shivamkalra25-Mar-11 7:57
shivamkalra25-Mar-11 7:57 
GeneralRe: What is the mistake with this code??? Pin
Luc Pattyn25-Mar-11 8:12
sitebuilderLuc Pattyn25-Mar-11 8:12 
GeneralRe: What is the mistake with this code??? Pin
shivamkalra25-Mar-11 8:28
shivamkalra25-Mar-11 8:28 
GeneralRe: What is the mistake with this code??? Pin
Dev. RoOo725-Mar-11 19:36
Dev. RoOo725-Mar-11 19:36 
AnswerRe: What is the mistake with this code??? Pin
David198725-Mar-11 7:57
David198725-Mar-11 7:57 
AnswerRe: What is the mistake with this code??? Pin
Luc Pattyn25-Mar-11 8:09
sitebuilderLuc Pattyn25-Mar-11 8:09 
GeneralRe: What is the mistake with this code??? Pin
David198725-Mar-11 8:11
David198725-Mar-11 8:11 
AnswerRe: What is the mistake with this code??? Pin
Dave Kreskowiak25-Mar-11 8:16
mveDave Kreskowiak25-Mar-11 8:16 
AnswerRe: What is the mistake with this code??? Pin
BobJanova30-Mar-11 23:58
BobJanova30-Mar-11 23:58 

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.