Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. richardlev

    Dynamically created TWebBRowser Event Handler

    Finally I got it work.....I am able to find the right TWebBrowser control using your code on your 5th post. Thanks Luckieluc. Richard
  2. richardlev

    Dynamically created TWebBRowser Event Handler

    I tried this code: TWebBrowser *p_browser; p_browser = dynamic_cast<TWebBrowser *>(p_tabsheet->Controls[I]); // I is the control index of TWebBrowser in tabsheet. But I could not make it work. I still cant find the pointer to the TWebBrowser. Richard
  3. richardlev

    Dynamically created TWebBRowser Event Handler

    Luckieluc when you say : "And when you have a pointer to TTabSheet you always know the pointer to a TWebBrowser." Can you explain that in some code example please? Richard
  4. richardlev

    Dynamically created TWebBRowser Event Handler

    I will try to apply your suggestions tomorrow. I did not have a clue that dealing with the TWebBrowser is such as pain in the butt. I still have to deal with the javascript error popup messages,the ok key that sometime doesnt work on some webpages,etc etc. Well one problem at the time. Also...
  5. richardlev

    Dynamically created TWebBRowser Event Handler

    Thanks for all your responses luckieluc. Now I am facing another problem: As you know in the app i create dinamically tabsheet and embed a TWebBrowser for each od these tabsheet. When OnDocumentComplete events fire...(see code snippet): void __fastcall...
  6. richardlev

    Dynamically created TWebBRowser Event Handler

    I am having another problem .....maybe you can help me luckieluc. After I created dinamically TWebBrowser and assign them to the tabsheets. When I click on each tabsheet I can see each page have the respective webpage which I create with....But How I can get access to a specific TWebbroser to...
  7. richardlev

    Dynamically created TWebBRowser Event Handler

    Thanks luckieluc, I think I will apply the second method... Your help is appreciated. Regards Richard
  8. richardlev

    Dynamically created TWebBRowser Event Handler

    Hi Guys, I am writing a multitab web browser using BCB TWbBrowser, So far I can create TWebBrowser objects dinamically for each tabsheet ( see snippet below): //=========== pTabSheet = new TLMDTabSheet(MainWindow->PageControl); pTabSheet->PageControl = MainWindow->PageControl; TabWebBrowser...

Part and Inventory Search

Back
Top