[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.4

VB reports bad calling convention from C DLL

Asked by mccainz in C++ Programming Language, Microsoft Visual C++

My C++ DLL has two functions, one is purely for testing and takes no parameters(just pops up a MessageBox), it works fine. The other takes a string (LPCSTR) as a parameter.
My problem is that when I use the second function from my VB app I get the Bad Callling Convention problem. I know there is lots of docs on this and Ive read a good deal of them but I still cant resolve the issue. / This is an example of an exported variable


Also: Using VC++ 6.0 (so no .DEF ffiles)
Some code...(DLL)

extern "C" DEERSDLL_API int testDeersdll()
{
    MessageBox(NULL, "hello world","hello world",MB_OK | MB_ICONINFORMATION);
      return 7;
}
// This is an example of an exported function.
extern "C" DEERSDLL_API int  fnDeersdll(LPCSTR argv)
{
   ...my code here
}

Some more Code...(VB)

Declare Function fnDeersdll _
Lib "D:\vs\MSDev98\MyProjects\deersdll\Debug\deersdll.dll" _
(ByVal ssn As String) As Long


Declare Function testDeersdll _
Lib "D:\vs\MSDev98\MyProjects\deersdll\Debug\deersdll.dll" _
() As Long

______________________________
Ive used dumpbin to check the exported names and everything matches up.
Im using ByVal in my function as the docs claim that VB actually passes a ptr when you pass byVal which is my intention (Read that passing by ref actually passes a ptr to a ptr meaning Id have to use a LPCSTR *.

Thanks for any help you can provide....
BTW: I thought about putting the __stdcall MACRO in my function header in case it was a stack problem(saw one answer where this was suggested, but it remangled my names and most of the examples on MSDN dont use that macro).

[+][-]10/17/00 09:07 AM, ID: 4773242Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: C++ Programming Language, Microsoft Visual C++
Sign Up Now!
Solution Provided By: nietod
Participating Experts: 2
Solution Grade: A
 
[+][-]10/17/00 07:55 AM, ID: 4771512Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/17/00 08:01 AM, ID: 4771681Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/17/00 08:39 AM, ID: 4772481Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/17/00 11:57 AM, ID: 4776118Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/17/00 11:58 AM, ID: 4776124Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]10/17/00 11:58 AM, ID: 4776125Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/17/00 11:59 AM, ID: 4776139Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/17/00 01:22 PM, ID: 4777359Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92