Hi matthias,
for some reason the update does or is not working as shown in your update examples?

Code:
After adding AW 2.21 get ERROR:

error CS0308: The non-generic type 'System.Collections.IEnumerable' cannot be used with type arguments


using:
private IEnumerable<ScheduleMethod> myMainMethod() //ERROR:
{

	//....
       //yield return 1;
       yield return ScheduleMethod.wait( 1 );

}

and:
        private IEnumerable<ScheduleMethod> SizeWindow() //ERROR:
        {
            /*wait until the form is being resized*/
            while (ResizingNow == false)
            {
                //yield return 1;
                yield return ScheduleMethod.wait( 1 );
            }
            /*change the resolution*/
            EngFun.video_window(null, new Vector((this.panel_acknexWindow.Width),
                                                  this.panel_acknexWindow.Height, 0), 0, null);
            IsChangingSize = false;   //reset flag
            //yield return 1;
            yield return ScheduleMethod.wait( 1 );
        }



I re-downloaded AW from your page, and tried again, but get the same error as above:
Have i missed anything else that has changed?
Or am i missing something?


A8.3x Commercial, AcknexWrapper and VS 2010 Express
&#9675;pararealist now.