Hola Elektro,
pero solo me pasaba cuando cambie el control WebBrowser por el control WebBrowserExtended.
Si yo en esto:
Le agrego solamente esto:
Me aparece el error CS1061, que seria:
C# does not contain a definition for and no extension method accepting a first argument of type could be found (are you missing a using directive or an assembly reference?
Necesito eso en mi caso:?
this.Shown += this.WBrowser_Shown;
Porque el Formulario se muestra cuando le doy click a iniciar.
Gracias y saludos
pero solo me pasaba cuando cambie el control WebBrowser por el control WebBrowserExtended.
Si yo en esto:
Código [Seleccionar]
public partial class WBrowser : Form
{
public static String favXml = "favorits.xml", linksXml = "links.xml";
String settingsXml="settings.xml", historyXml="history.xml";
List<String> urls = new List<String>();
XmlDocument settings = new XmlDocument();
String homePage;
CultureInfo currentCulture;
public WBrowser()
{
InitializeComponent();
currentCulture = CultureInfo.CurrentCulture;
}
Le agrego solamente esto:
Código [Seleccionar]
public partial class WBrowser : Form
{
public static String favXml = "favorits.xml", linksXml = "links.xml";
String settingsXml="settings.xml", historyXml="history.xml";
List<String> urls = new List<String>();
XmlDocument settings = new XmlDocument();
String homePage;
CultureInfo currentCulture;
public WBrowser()
{
InitializeComponent();
this.Shown += this.WBrowser_Shown;
currentCulture = CultureInfo.CurrentCulture;
}
Me aparece el error CS1061, que seria:
C# does not contain a definition for and no extension method accepting a first argument of type could be found (are you missing a using directive or an assembly reference?
Necesito eso en mi caso:?
this.Shown += this.WBrowser_Shown;
Porque el Formulario se muestra cuando le doy click a iniciar.
Gracias y saludos