I have been given a task to integrate Gecko
browser component to a existing winform control, but the issue i m facing is how to configure dll, I am trying with different version as well, but no luck, at point it does not load dll and gives the error
Unable to find an entry point named 'NS_Alloc' in DLL 'xul'.
I have downloaded separately from given link. Xulrunner the latest and also the 29 but it says ,
An error occurred creating the form. See Exception.InnerException for details. The error is: Unable to load DLL 'xul': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
Imports System.IO
Imports System.Xml Imports Gecko Imports Microsoft.Win32
Public Class Form1
Public Sub New()
InitializeComponent()
'D:\xulrunner\bin
Xpcom.Initialize("D:\\xulrunner\\") 'xulrunner
'Xpcom.Initialize("C:\Program Files (x86)\Mozilla Firefox\")
End Sub
End Class
please help me out if anybody has already done with that.