Displaying 7 results from an estimated 7 matches for "filter32".
Did you mean:
filter2
2001 Nov 20
3
Running Visio?
...eaks while loading the first
file or template. It says
Fehlernr. 1 ist bei der '???'-Operation aufgetreten.
Unerwartetes Dateiende.
which translates into
Fault 1: Unexpected EOF
Going throug the debug output, I noticed file accesses for
warn:file:FILE_DoOpenFile 'd:\visio\system\filter32\emigs9.flt' not found or sharing violation
although the file is emigs2.flt. Providing a link fixes this message,
but it doesn't help Visio :-(
Then there are a lot of messages along
warn:gdi:GDI_GetObjPtr Invalid handle 0
warn:heap:HEAP_ValidateInUseArena Heap 40e30000: invalid in-use a...
2009 Apr 15
2
Threed32.ocx error wwhen installing VB6 application
I am finally migrating from Windows to Ubuntu and I am installing a number of Windows electronics and CAD package using Wine 1.0.1-0 on Ubuntu 8.10. Most run with no issues at all and I am very impressed with Wine. However I am now trying to install AADE Filter, a VB6-based filter design application and I get the following message at the end of the installation process:
2009 Aug 08
0
AADE Filter Design: "ActiveX component can't create object"
Hello,
I'm trying to run "AADE Filter Design", a program used for the design of
electronic filters. It's available for free from
http://www.aade.com/filter32/fdinstall.exe
It installs correctly after I 'winetricks mfc40' and install the VB6
run-time, but it gives the "ActiveX component can't create object"
error when run.
Any ideas? This is Wine 1.1.26 on Arch Linux.
error output from console:
(9) alliance:~/.wine/drive_c/...
2010 Dec 01
0
[LLVMdev] Alternative exception handling proposal
...rrent llvm.eh.selector call. There's no way to determine from this list whether the last value is truly the catchall value or for a catch handler.
> "10": ; preds = %"5"
> %exc_ptr31 = call i8* @llvm.eh.exception()
> %filter32 = call i32 @llvm.eh.selector()
> invoke void @_ZN1CD1Ev(%struct.A* %memtmp)
> to label %"11" unwind label %fail personality @__gxx_personality_v0
> catches i32 1 ; <- this is an empty filter, i.e. one that catches everything
>
Filter? What do you mean by this?...
2010 Dec 01
8
[LLVMdev] Alternative exception handling proposal
...wind label %lpad personality @__gxx_personality_v0
catches %struct.__fundamental_type_info_pseudo* @_ZTIi,
%struct.__pointer_type_info_pseudo* @_ZTIPKc, i8* null
"10": ; preds = %"5"
%exc_ptr31 = call i8* @llvm.eh.exception()
%filter32 = call i32 @llvm.eh.selector()
invoke void @_ZN1CD1Ev(%struct.A* %memtmp)
to label %"11" unwind label %fail personality @__gxx_personality_v0
catches i32 1 ; <- this is an empty filter, i.e. one that catches everything
lpad26: ;...
2010 Dec 02
3
[LLVMdev] Alternative exception handling proposal
...atch-all, add special catch-alls
etc. If there was a catch-all in the original code then there is one on the
invoke, otherwise there is not. There is no special treatment of catch-all.
>> "10": ; preds = %"5"
>> %exc_ptr31 = call i8* @llvm.eh.exception()
>> %filter32 = call i32 @llvm.eh.selector()
>> invoke void @_ZN1CD1Ev(%struct.A* %memtmp)
>> to label %"11" unwind label %fail personality @__gxx_personality_v0
>> catches i32 1 ; <- this is an empty filter, i.e. one that catches everything
>>
> Filter? What do you mean b...
2010 Dec 02
0
[LLVMdev] Alternative exception handling proposal
...the specific type that is used for a catchall. E.g., i8* null in C++ and a global variable in Ada. In your code above, the i8* null is indistinguishable from the other types.
>>> "10": ; preds = %"5"
>>> %exc_ptr31 = call i8* @llvm.eh.exception()
>>> %filter32 = call i32 @llvm.eh.selector()
>>> invoke void @_ZN1CD1Ev(%struct.A* %memtmp)
>>> to label %"11" unwind label %fail personality @__gxx_personality_v0
>>> catches i32 1 ; <- this is an empty filter, i.e. one that catches everything
>>>
>> Filte...