Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
I have successfuly embeded Power Bi Report with View Access level on my Webpage, it is working good.
Now I'm trying to show report in Windows Form App using WebBrowser control.
I do the simple steps,
webBrowser.Navigate( embedUrl );
and in DocumentCompleted event handler
string message = JsonConvert.SerializeObject( new
{
type = "report",
action = "loadReport",
accessToken = AccessToken
} );
webBrowser.Document.InvokeScript( "postMessage", new object[] { message, "*" } );
And after that I got error