11-22-2007 11:08 AM
11-27-2007 10:43 AM
11-28-2007 07:58 AM
what is the adress mail please 🙂
delphine
11-28-2007 12:03 PM
11-29-2007 03:21 AM
hello
this is my program.
the erro appear when you clic on ANUM in menu bar
To havn't got error I have to had the line 245/246 (displaypanel/hidepanel) or suppress line 248 (load DLL) (I put // to line 245/246 for you can saw the error)
thanks for your help
delphine
11-29-2007 01:52 PM
Hello Delphine,
This crash is happening in a Windows DLL (icm32.dll). The internal call inside CVI is to the Win32 function CreateDIBSection. Although this is very rare, we've seen it happen a couple of times before. (Omar: see bug #4027BM7K) Unfortunately, we can't find out why this is really happening. Some previous Googling has suggested that this is some kind of Windows bug.
You have a couple of workarounds:
1. The DLL in question, icm32.dll, is not particularly important. It only seems to be used for some form of color matching during printing (it beats me why it's even being called in this case). So you can delete it. Deleting it is a bit of a pain. You have to delete it in c:\windows\system32.dll, and in c:\windows\system32\dllcache, and I think you have to delete it while booted into safe mode, otherwise Windows keeps restoring it.
2. A better option is probably to convert this (or any other) panel to use Windows-style controls. You can do that in the User Interface Editor, by editing the panel, clicking on the "Other Attributes" button and then selecting "Use Windows Visual Styles for Controls". When you have this option selected, the code path used internally when drawing controls is different, and this doesn't happen.
Hope this helps,
Luis