I’m using ChromiumBrowserMBS (Windows) to get the source of a webpage and parse. I’ve had it working for over a couple years and it recently quit working. I was using Xojo 2020r2 and I had to upgrade to Xojo 2022r2 because the website I was getting the source from did not show the webpage until I upgraded but now I cannot get the source from the page. The code I use is from the MBS website and no longer works with the version of ChromiumBrowserMBS I am using. I’m not sure what version of the MBS plugins I am using but there is a timestamp of 5/23/2021 on them in my plugins folder. Does only the newest version of the MBS plugins ChromiumBrowserMBS get the page source or did something change and I need to change my code. Thank you for any help or guidance.
txtSource.Text = “”
dim b as ChromiumBrowserMBS = HTMLViewer1.ChromiumBrowserMBS
if b<>Nil then
dim m as ChromiumFrameMBS = b.mainFrame
if m<>Nil then
dim t as string = m.Source
txtSource.Text = t
end if
end if