I have a problem using a third-party component in Delphi 2006 (also Delphi 7), in which I get an "Unspecified Error" when executing a function call to that component. Do you have example code that utilises GetLastError and FormatMessage in Delphi, that would allow me to access more information about the error ? TIA :)
|
There is an integrated helper function in Delphi: For example you can use this to display the last error:
If you want to raise an exception with this message, it's even simpler:
Important: Make sure that there is no additional API call between the failing function and your call of |
|||||||||
|
|
While DR is correct, there is a problem with this approach: It does not allow you to specify the context in which the error occurred. Ever seen the error "An API function failed." whithout being any wiser which function it was and where it happended? That's why I wrote the RaiseLastOsErrorEx and Win32CheckEx functions:
(They are part of my dzLib library available here: http://svn.berlios.de/svnroot/repos/dzchart/utilities/dzLib/ There you can also find a description, see unit u_dzMiscUtils.) |
|||||||||||
|