View previous topic :: View next topic |
Author |
Message |
cicak Expert Cheater
Reputation: 0
Joined: 02 Apr 2007 Posts: 159 Location: Cheat Engine
|
Posted: Sat May 31, 2008 6:42 am Post subject: [Delphi] Load A Site Then Fill Up Something ? |
|
|
Im planning to make an anonymous mailer based on a site
but I have no idea how to fill up something for example 'Name','Email',
'Subject' then press Send button.
I did search but found nothing , so help me or at least give me the keyword
so I can search
_________________
|
|
Back to top |
|
 |
HolyBlah Master Cheater
Reputation: 2
Joined: 24 Aug 2007 Posts: 446
|
|
Back to top |
|
 |
cicak Expert Cheater
Reputation: 0
Joined: 02 Apr 2007 Posts: 159 Location: Cheat Engine
|
Posted: Sat May 31, 2008 2:50 pm Post subject: |
|
|
Why I keep getting this error?
_________________
|
|
Back to top |
|
 |
HolyBlah Master Cheater
Reputation: 2
Joined: 24 Aug 2007 Posts: 446
|
Posted: Sun Jun 01, 2008 6:36 am Post subject: |
|
|
Try replace the line with:
Code: | document := IHTMLDocument2(TWebBrowser.Document); |
|
|
Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Sun Jun 01, 2008 6:59 am Post subject: |
|
|
Can i first understand what file extension are you trying to load ?
|
|
Back to top |
|
 |
HolyBlah Master Cheater
Reputation: 2
Joined: 24 Aug 2007 Posts: 446
|
Posted: Sun Jun 01, 2008 7:30 am Post subject: |
|
|
He trying to change the value of an input object.
|
|
Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Sun Jun 01, 2008 9:27 am Post subject: |
|
|
HolyBlah wrote: | He trying to change the value of an input object. |
Then why not use the Delphi's VCL TMemo function:
Memo1.Lines.LoadFromFile('C:\lol.txt');
//then modification code here...
or If OpenDialog1.Execute then Memo1.Lines.OpenDialog1.GetFileName;
|
|
Back to top |
|
 |
Anden100 Grandmaster Cheater
Reputation: 0
Joined: 20 Apr 2007 Posts: 668
|
Posted: Mon Jun 02, 2008 5:45 am Post subject: |
|
|
or If OpenDialog1.Execute then Memo1.Lines.OpenDialog1.GetFileName;[/quote]
you mean:
if OpenDialog1.Execute then Memo1.Lines.LoadFromFile(OpenDialog1.FileName);
??
|
|
Back to top |
|
 |
|