Finally i got my pc to work again ^^
I've uploaded a new Version of the Wrapper for A7.80, Version 1.0.4 :
It fixes the issue with BMAP bein null in pan_setbmap, pan_setneedle, pan_setslider, pan_setwindow and pan_setbutton.
This update additionally features a new class called "Flags" which contains ALL flags which may be used (the are now stored as const int and not as enum, so one doesn't have to cast them to int anymore !). Thus one doesn't have to guess where the enum for certain flags is stored (thanks to pararealist as he showed me that the current usage of flags wasn't flawless!).
Thus flags may now be used as followed :
Quote:
//old usage (is still supported)
EngFun.c_trace(new Vector(0, 0, 0), new Vector(0, 0, 0), (int)(EngFun.c_FLAGS.IGNORE_FLAG2 | EngFun.c_FLAGS.IGNORE_PASSABLE));

//new usage
EngFun.c_trace(new Vector(0, 0, 0), new Vector(0, 0, 0), Flags.IGNORE_FLAG2 | Flags.IGNORE_PASSABLE);


If someone has any suggestions for the next release, post them here please!


get the C# wrapper:
for A7.85.4 and A8.30.4, Version 2.3.9
at http://acknexwrapper2.matthias-auer.net/ or visit the thread