Re: PDF display
- Posted by ghaberek (admin) Jul 13, 2009
- 1139 views
lockiedownunder said...
Ok now if I try to run acroview I get the following error
D:\EUPHORIA\win32\Include\Win32Lib.ew:24306 in function MessageProcessor() A machine-level exception occurred during execution of this statement pSource = -2761 hWnd = 7276194 iMsg = 5 wParam = 0 lParam = 27656816 id = 3 lHandledEvent = 15 lTemp = 1 result = 0 lUserReturn = <no value> ... called from D:\EUPHORIA\win32\Include\Win32Lib.ew:24343 in function WndProc() hWnd = 7276194 iMsg = 5 wParam = 0 lParam = 27656816 ^^^ call-back from Windows
Looking into this a little further, pSource = -2761 is kMainMsg, so that's perfectly legit. iMsg = 5 which is WM_SIZE, so this is probably occuring during the initial w32HResize event after the w32HOpen event.
In my Win32Lib, line 24306 is just "else" so I'm not what's causing the machine error there. Which is why I'm curious if you've got a different version of Win32Lib.
24304 if length(result) > 1 then 24305 result = result[2] 24306 else 24307 result = 0 24308 end if
AcroView seems to run fine for me. I'm using Win32Lib 0.70.4a 17-June-2008. I've got Adobe Acrobat 8 Standard, but I've also tested this on a computer with Adobe Reader 8. I will try to test with Adobe Reader 9, which I believe is the latest version.
-Greg