Access violation while the program was idle - not trace information to track down the bug

后端 未结 3 895
我寻月下人不归
我寻月下人不归 2021-02-11 11:30

I have a program that just popped up an AV. Until now the Eureka Log could find the source code line that generated the error but now it displays only this:

Acc         


        
3条回答
  •  遇见更好的自我
    2021-02-11 11:44

    I don't see an EditWndProc() method in user32.dll, but Delphi has a couple -- one dealing with combobox messages and one dealing with tree views. Given MS's comctrl mess, I'd guess you have a tree view?

    Check your tree view stuff. Given IntersectClipRect's parameters, it's easy to guess that it's being passed an invalid device context -- so...are you doing any custom painting for your tree view? If so, are you checking to make sure the canvas handle is ! NIL before you begin painting (try assertions if nothing else)?

提交回复
热议问题