Hi all, a little question i can't see asked/solved.

I'm creating a web on a string.
I'm using the webview2 like this:
Code:
 PicWv.Visible = True
    
    Set WV = New_c.WebView2
    If WV.BindTo(PicWv.hwnd) = 0 Then
    MsgBox "No puedo Inicializar el Webview", vbCritical, "Error!"
        Exit Sub
    End If
generating the web and launching this way:

WV.NavigateToString laweb

Everything is working fine, BUT i need to show another web (basically the same web with another data on it (diferent charts)), and then becomes the problem... the web is not reloading... i tried to modify the web content, destroying the WV, but nothing... always the same web until i close the form and launch again with the other data.... any idea about how to solve this ?

Thanks!