DaVince wrote: > "Use native ***" basically means that there is a non-Wine version of that component that you could install, usually through Winetricks ( http://wiki.winehq.org/winetricks ). After having installed the component through that, try running the app again, report if it works and if it does, file a bug on http://bugs.winehq.org . Thanks. Looks like mshtml is not available to install through winetricks, but I suppose can copy that from a windows machine. I still have two problems. I still don't know what "mda28" is. Also I'm not able to get wine to compile using the patch from above: > > diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c > index 547b666..d19bff7 100644 > --- a/dlls/iphlpapi/iphlpapi_main.c > +++ b/dlls/iphlpapi/iphlpapi_main.c > @@ -434,6 +434,31 @@ DWORD WINAPI GetAdapterIndex(LPWSTR AdapterName, PULONG IfIndex) > > > /****************************************************************** > + * GetAdaptersAddresses (IPHLPAPI.@) > + * > + * Get addresses associated with adapters. > + * > + * PARAMS > + * Family [In] address family of the addresses > + * Flags [In] which types of addresses > + * Reserved [In] should be null > + * AdapterAddresses [In/Out] ptr to a buffer to receive addresses > + * SizePointer [In/Out] ptr to a variable with the size of the buffer pointed to > + * > + * RETURNS > + * Success: NO_ERROR > + * Failure: error code from winerror.h > + * > + * FIXME > + * Stub, returns ERROR_CALL_NOT_IMPLEMENTED > + */ > +ULONG WINAPI GetAdaptersAddresses( ULONG Family, ULONG Flags, PVOID Reserved, > + /*PIP_ADAPTER_ADDRESSES*/PVOID AdapterAddresses, PULONG SizePointer) > +{ > + FIXME("stub\n"); > + return ERROR_NO_DATA; > +} > +/****************************************************************** > * GetAdaptersInfo (IPHLPAPI.@) > * > * Get information about adapters. > (END) > Maybe this is not the complete patch? Any additional clues would be appreciated. I know many people want this app to run under Wine and I'll happily post a summary if I can get it to work. Thanks!