Email

Just starting out? Need help? Post your questions and find answers here.
theghost
New User
New User
Posts: 4
Joined: Thu Oct 08, 2009 9:26 pm

Email

Post by theghost »

Hello
is there a possibility to open my email account (i'm at gmail) directly from the programm without having to fill my username and password ?

thankd

the ghost
rsts
Addict
Addict
Posts: 2736
Joined: Wed Aug 24, 2005 8:39 am
Location: Southwest OH - USA

Re: Email

Post by rsts »

Extremely unlikely.

And I doubt that you'd want it any other way, or people would be hacking your account.

Or do you mean by having your program fill in the name and password for you?

cheers
theghost
New User
New User
Posts: 4
Joined: Thu Oct 08, 2009 9:26 pm

Re: Email

Post by theghost »

Or do you mean by having your program fill in the name and password for you?
yes
theghost
New User
New User
Posts: 4
Joined: Thu Oct 08, 2009 9:26 pm

Re: Email

Post by theghost »

Code: Select all

XIncludeFile "COMateplus.pbi"
Define explor1.COMateObject
explor1 = COMate_CreateObject("InternetExplorer.Application")
If explor1
explor1\Invoke("Navigate('www.gmail.com')")   
explor1\SetProperty("ToolBar = #true")
explor1\SetProperty("StatusBar = #true")
explor1\SetProperty("Visible = #True")
explor1\Release()
EndIf
i can do that but how make the program fill the username and password and go on to the next page

also how open the explorer in a big window

and last question how to open another web page in the same window

thanks

the ghost
User avatar
John Puccio
User
User
Posts: 26
Joined: Fri Jun 12, 2009 6:56 am
Location: My Keyboard

Re: Email

Post by John Puccio »

Ghost,

The nice thing about Gmail is that the focus is already set on UserName so you won't have to move the mouse. So then all you have to do is send your username then {TAB} then password, {TAB} again, and last {ENTER}. I think what you're looking for is in this thread.

http://www.purebasic.fr/english/viewtop ... =12&t=3766

Good Luck!
JP

P.S. I really thought this thread was about email. Just a tip, not a critisism. Try to be a little more specific when posting questions. It makes it easier for searches and also gets you a quicker response. :)
Post Reply