VB6 COM CLASS :
CODE:
Public Function showForm()
Form1.Show
End Function
和一張Form1
VB.NET
CODE:
Dim Vb6Form = New Project1.Class1
Vb6Form.showForm()
如果個com class裏面沒有包含form就沒有問題,一加張form落去就出事...
為什麼我call個vb6 form會有以下既訊息?
Additional information: 在源自 ActiveX DLL、ActiveX 控制項或屬性頁的應用程式中,無法顯示非強制回應表單。
我需要做什麼才能夠call到張form?
謝謝回答~~