Problem loading with dll
-
I have problem with dll loading (windows says "Unable to load DLL 'Scilexer.dll', the spesified module could not be found. Exception from HRESULT : 0x8007007E). this problem occurs when I try to override :
unsafe public override string Text
{
get
{
int sz = win32Access.SendSciMessage(directPointer,(int)ScintillaEnum.Selection.SciGetLength,0,0); //form designer says that the problem occurs at this linebut when I change the name so that it no longer override, It can works. I can use this custom control again
unsafe public string TheText
{
get
{
int sz = win32Access.SendSciMessage(directPointer,(int)ScintillaEnum.Selection.SciGetLength,0,0);please anyone help me to explain this.:confused:
No one can prevent me to learn something
-
I have problem with dll loading (windows says "Unable to load DLL 'Scilexer.dll', the spesified module could not be found. Exception from HRESULT : 0x8007007E). this problem occurs when I try to override :
unsafe public override string Text
{
get
{
int sz = win32Access.SendSciMessage(directPointer,(int)ScintillaEnum.Selection.SciGetLength,0,0); //form designer says that the problem occurs at this linebut when I change the name so that it no longer override, It can works. I can use this custom control again
unsafe public string TheText
{
get
{
int sz = win32Access.SendSciMessage(directPointer,(int)ScintillaEnum.Selection.SciGetLength,0,0);please anyone help me to explain this.:confused:
No one can prevent me to learn something
Is Scilexer.dll is the same directory as the application? If so, are all Scilexer.dll's dependencies in the PATH?
xacc.ide - now with TabsToSpaces support
IronScheme - 1.0 beta 1 - out now!
((lambda (x) `((lambda (x) ,x) ',x)) '`((lambda (x) ,x) ',x)) -
Is Scilexer.dll is the same directory as the application? If so, are all Scilexer.dll's dependencies in the PATH?
xacc.ide - now with TabsToSpaces support
IronScheme - 1.0 beta 1 - out now!
((lambda (x) `((lambda (x) ,x) ',x)) '`((lambda (x) ,x) ',x))Of course that dll's is in the same place. I copied that Dll into Debug and Release directory. That's why my Code work when I change
unsafe public override string Text
withunsafe public string TheText
Both can't work if the Dll is not in the right directory, right? I'm still confused with this problem:confused:No one can prevent me to learn something