Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. ATL / WTL / STL
  4. user32!IsWindow crash

user32!IsWindow crash

Scheduled Pinned Locked Moved ATL / WTL / STL
sharepointhelpquestion
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Y Offline
    Y Offline
    yu jian
    wrote on last edited by
    #1

    Hello everyone, I meet a crash problem. just as following, I donot know why IsWindow will crash, Is there anyone meet the same problem? AULTING_IP: user32!IsWindow+1a 761a7150 8365fc00 and dword ptr [ebp-4],0 EXCEPTION_RECORD: ffffffff -- (.exr 0xffffffffffffffff) ExceptionAddress: 761a7150 (user32!IsWindow+0x0000001a) ExceptionCode: c0000005 (Access violation) ExceptionFlags: 00000000 NumberParameters: 2 Parameter[0]: 00000001 Parameter[1]: fffffffc Attempt to write to address fffffffc ChildEBP RetAddr Args to Child 06f9ff48 72d229bb 04e73a50 6928d287 00000000 user32!IsWindow+0x1a 06f9ff80 72d22a47 00000000 7710338a 04e74990 msvcr80!_callthreadstartex+0x1b [f:\sp\vctools\crt_bld\self_x86\crt\src\threadex.c @ 348] 06f9ff88 7710338a 04e74990 06f9ffd4 776b9f72 msvcr80!_threadstartex+0x66 [f:\sp\vctools\crt_bld\self_x86\crt\src\threadex.c @ 326] 06f9ff94 776b9f72 04e74990 70af11ab 00000000 kernel32!BaseThreadInitThunk+0xe 06f9ffd4 776b9f45 72d229e1 04e74990 00000000 ntdll!__RtlUserThreadStart+0x70 06f9ffec 00000000 72d229e1 04e74990 00000000 ntdll!_RtlUserThreadStart+0x1b

    L B 2 Replies Last reply
    0
    • Y yu jian

      Hello everyone, I meet a crash problem. just as following, I donot know why IsWindow will crash, Is there anyone meet the same problem? AULTING_IP: user32!IsWindow+1a 761a7150 8365fc00 and dword ptr [ebp-4],0 EXCEPTION_RECORD: ffffffff -- (.exr 0xffffffffffffffff) ExceptionAddress: 761a7150 (user32!IsWindow+0x0000001a) ExceptionCode: c0000005 (Access violation) ExceptionFlags: 00000000 NumberParameters: 2 Parameter[0]: 00000001 Parameter[1]: fffffffc Attempt to write to address fffffffc ChildEBP RetAddr Args to Child 06f9ff48 72d229bb 04e73a50 6928d287 00000000 user32!IsWindow+0x1a 06f9ff80 72d22a47 00000000 7710338a 04e74990 msvcr80!_callthreadstartex+0x1b [f:\sp\vctools\crt_bld\self_x86\crt\src\threadex.c @ 348] 06f9ff88 7710338a 04e74990 06f9ffd4 776b9f72 msvcr80!_threadstartex+0x66 [f:\sp\vctools\crt_bld\self_x86\crt\src\threadex.c @ 326] 06f9ff94 776b9f72 04e74990 70af11ab 00000000 kernel32!BaseThreadInitThunk+0xe 06f9ffd4 776b9f45 72d229e1 04e74990 00000000 ntdll!__RtlUserThreadStart+0x70 06f9ffec 00000000 72d229e1 04e74990 00000000 ntdll!_RtlUserThreadStart+0x1b

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      Please show the code that causes the error, it looks as if you are passing a bad parameter to some windows function.

      1 Reply Last reply
      0
      • Y yu jian

        Hello everyone, I meet a crash problem. just as following, I donot know why IsWindow will crash, Is there anyone meet the same problem? AULTING_IP: user32!IsWindow+1a 761a7150 8365fc00 and dword ptr [ebp-4],0 EXCEPTION_RECORD: ffffffff -- (.exr 0xffffffffffffffff) ExceptionAddress: 761a7150 (user32!IsWindow+0x0000001a) ExceptionCode: c0000005 (Access violation) ExceptionFlags: 00000000 NumberParameters: 2 Parameter[0]: 00000001 Parameter[1]: fffffffc Attempt to write to address fffffffc ChildEBP RetAddr Args to Child 06f9ff48 72d229bb 04e73a50 6928d287 00000000 user32!IsWindow+0x1a 06f9ff80 72d22a47 00000000 7710338a 04e74990 msvcr80!_callthreadstartex+0x1b [f:\sp\vctools\crt_bld\self_x86\crt\src\threadex.c @ 348] 06f9ff88 7710338a 04e74990 06f9ffd4 776b9f72 msvcr80!_threadstartex+0x66 [f:\sp\vctools\crt_bld\self_x86\crt\src\threadex.c @ 326] 06f9ff94 776b9f72 04e74990 70af11ab 00000000 kernel32!BaseThreadInitThunk+0xe 06f9ffd4 776b9f45 72d229e1 04e74990 00000000 ntdll!__RtlUserThreadStart+0x70 06f9ffec 00000000 72d229e1 04e74990 00000000 ntdll!_RtlUserThreadStart+0x1b

        B Offline
        B Offline
        Bernhard Hiller
        wrote on last edited by
        #3

        Further questions: - the window handle you feed into IsWindow: is it a handle inside your application or a different window? - is your application running elevated? - is the other application running elevated? - are there differences in 32 vs. 64bit architecture between the applications?

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups