vote up 0 vote down star
1

hello all friends..........

I create a form inside the Dll. But it compile is not successfully.Some Error below.

" Access violation at address 004EB784 in module 'Project1dll.dll'.Read of address 00000048"

Thanks.....

flag

30% accept rate
5  
I think you mean address 004EB785. – Adamski Aug 21 at 16:24
That's a run-time error, not a compile time error. You need to debug your code to find out what the problem is. – Michael Aug 21 at 16:25
2  
@Adamski: that would be too easy with 004EB785. You try to solve it for 004EB784 – Quassnoi Aug 21 at 16:26
1  
Please at least show us the code around where the exception is thrown. – Lars Truijens Aug 21 at 17:29
And why have you tagged it database and activex? Are those little hints? Maybe you could provide more detail in your question? – Lars Truijens Aug 21 at 17:29
show 3 more comments

3 Answers

vote up 2 vote down

You are dereferencing a nil pointer somehow. Perhaps an object that hasn't been created?

link|flag
vote up 0 vote down

here's something i've found necessary to do this. see my example function below:

procedure DoSomething(hApp:THandle); export;
var
  hDllApplication:THandle;
begin
  hDllApplication:=Application.Handle;
  Application.Handle:=hApp;
  try
    DoItNow;
  finally
    Application.Handle:=hDllApplication;
  end;
end;
link|flag
if you have database code in your DLL, you must do the same with Session. – X-Ray Aug 21 at 19:13
vote up 0 vote down

As well you should have a look here, it might help if your trouble is elsewhere .. Forms in dll

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.