I am using C++Builder XE4-pro with the VCL 32bit platform. I am using the component named CppWebBrowser to load a JPL web page. I added a picture of the web page below. The code below is my button event that loads the web page. The web page is used by manually entering an asteroid name into the search box and pressing the enter key. This runs a script that loads the asteroid details. I need to run the search box using code. One sample asteroid name is Eros. Is there any way to activate this search box for Eros using code?
void __fastcall TForm1::Button1Click(TObject *Sender)
{
UnicodeString Full;
Full = "https://ssd.jpl.nasa.gov/sbdb.cgi#top";
CppWebBrowser1->Navigate( Full.c_str() );
}
