Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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