| View previous topic :: View next topic |
| Author |
Message |
ali Guest
|
Posted: Wed Feb 16, 2005 8:21 pm Post subject: Open The Site |
|
|
Hi;
How Can I Add About Like (???) To The End Of The Site Like
Http://www.Borland.com/
Example: Http://www.Borland.com/???
Is Ther Any Api For This ?
And I Want To Show This Site In The CppWebBrowser()
Thanks.
-------------------------------------
<ali>
<ali_info (AT) hotpop (DOT) com>
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Wed Feb 16, 2005 8:44 pm Post subject: Re: Open The Site |
|
|
"ali" <ali_info (AT) hotpop (DOT) com> wrote
I do not understand what you are asking for. Please clearify.
| Quote: | And I Want To Show This Site In The CppWebBrowser()
|
TCppWebBrowser has a Navigate() method.
Gambit
|
|
| Back to top |
|
 |
Ali Guest
|
Posted: Thu Feb 17, 2005 9:24 am Post subject: Re: Open The Site |
|
|
Hi Gambit;
I Want To Open (".Com") But Dont Appeare In Arive Site.
When We Put A Name Of A Site In A Edit
Like This:("Http://www.borland")
So Add (".Com") To The End Of Site Wite Push The ("Enter") Key.
Example: "Http://www.borland.com"
And It Show The Site In The Web Browser.
Thanks.
-------------------------------------
<ali>
<ali_info (AT) hotpop (DOT) com>
"Remy Lebeau (TeamB)" <no.spam (AT) no (DOT) spam.com> wrote
| Quote: |
"ali" <ali_info (AT) hotpop (DOT) com> wrote in message
news:4213ab71 (AT) newsgroups (DOT) borland.com...
How Can I Add About Like (???) To The End Of The Site Like
Http://www.Borland.com/
Example: Http://www.Borland.com/???
I do not understand what you are asking for. Please clearify.
And I Want To Show This Site In The CppWebBrowser()
TCppWebBrowser has a Navigate() method.
Gambit
|
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Thu Feb 17, 2005 6:05 pm Post subject: Re: Open The Site |
|
|
"Ali" <ali_info (AT) hotpop (DOT) com> wrote
| Quote: | I Want To Open (".Com") But Dont Appeare In Arive Site.
When We Put A Name Of A Site In A Edit
Like This:("Http://www.borland")
So Add (".Com") To The End Of Site Wite Push The ("Enter") Key.
Example: "Http://www.borland.com"
And It Show The Site In The Web Browser.
|
void __fastcall TForm1::Edit1KeyPress(TObject *Sender, char &Key)
{
if( Key == VK_RETURN )
{
Key = 0;
AnsiString URL = Edit1->Text;
if( URL.SubString(URL.Length()-3, 4) != ".com" )
URL += ".com";
CppWebBrowser1->Navigate(WideString(URL));
}
}
Gambit
|
|
| Back to top |
|
 |
|