是Shockwave ActiveX Control
在Delphi里运行出现
Project xxx reaised exception calss EAccessViolation with message 'Access violation at address 777E1347 in moudule 'version.dll'. Read of address 00000004'. Process stopped. Use Step or Run to continue.
很简单呀,在VB的DLL工程TestDll中加入Form1,再在函数中调用。如:
Option Explicit
Public Function TextForm(Title as string)
With Form1
.Caption=Title
.Show 1
End With
在Delphi中调用TestDll.TextForm即可。