so ...
not i got some screens further ...
but now i get :
setup could not start the install-engine ( 0x80070005 ).
and it shuts down .. 
one oether question is : why does wine open so many desktopst ?
for every run a new one ?
that is kinda annoing ...
eny idea ?
would be grate if u could help me to fix that problem ..
the problem with the install screnn can be fixt, by patching manualy the
win.c
cuz the patch file from
http://www.integrita.com/cgi-local/lwgate.pl/WINE-PATCHES/archives -->
2000/07 --> setwindowlong 
is outdated, but u can fix it by hand,
if u open win.c ; go to line 2032 ( case GWL_STYLE: )
and than change the code between 'case GWL_STYLE:' 
and 'if (wndPtr->flags & WIN_ISWIN32)'
into : 
		case GWL_STYLE:
	  
	  //	       	style.styleOld = wndPtr->dwStyle;
	  //		newval &= ~(WS_CHILD);	/* this bit can't be changed this way */
	  //		style.styleNew = newval | (style.styleOld & (WS_CHILD));
               /* FIXME: this part originally prevented you from
modifying
                * WS_VISIBLE and WS_CHILD flags.
                * However at least Win95 allows modification for both
                * Win16 and Win32. Was this a limitation for < Win95
only ? */
               style.styleOld = wndPtr->dwStyle;
               style.styleNew = newval;	
	        if (wndPtr->flags & WIN_ISWIN32)
...
thanks to Andreas Mohr ....
but so, does enyone know how to fix tha setup problem ???
Thanks M.Angermann