I have been stripping back code to demo a problem I am having involving Threads and the Status of the threads, when I finally got things stripped down now I have a problem with the Demo, where VB can not find the DLL.
I went further on and built "DemoProblemPb.exe" to see if a true compiler could show me "the error of the ways" that VB is known for causing, and found that the true error is that the entry point to the dll could not be found.
I have checked over and over, and best I can see both the declare and the function are the same, and no spelling mistakes (even in Alias)
I went further on, and fired up "Depends.exe" and sure enough, the function is exported, and the entry point can be seen.
(Sure I could LoadLibrary, and avoid the error(s) but I need hardcoded so that I can find and FIX the error)
Can someone spot what I can not so that I can post my real question?
I went further on and built "DemoProblemPb.exe" to see if a true compiler could show me "the error of the ways" that VB is known for causing, and found that the true error is that the entry point to the dll could not be found.
I have checked over and over, and best I can see both the declare and the function are the same, and no spelling mistakes (even in Alias)
I went further on, and fired up "Depends.exe" and sure enough, the function is exported, and the entry point can be seen.
(Sure I could LoadLibrary, and avoid the error(s) but I need hardcoded so that I can find and FIX the error)
Can someone spot what I can not so that I can post my real question?
Comment