• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Run-Time Error '453' Visual Basic

Bailey

Junior Member
Here is my current problem, hopefully someone will know how to fix it because I searched for an answer and apparantly many people have the same problem, unfortunately there were no answers.

I am trying to communicate between my Visual Basic program and a C++ program. The C++ program can access the dll fine, but when I call the dll from VB, it gives the run-time error '453' "Cannot find entry point." My code is

'in the declarations
Private Declare Sub CComm Lib "pathname" (ByValue msg As String)

'In Command1_Click()
Call CComm(msg)

'In the dll
Public Function CComm(msg As String) As Integer
MsgBox msg
End Function

Thanks for any response to my question.
😕
 
Back
Top