Thanks
I was now able to get the example to view with the new style. But I am struggeling with doing to my .NET target. Is it possbile? I get this message indicating a missing Method and I do not know which assemly to add.
System.MissingMethodException
Metoden hittades inte: Int32 EiffelSoftware.Runtime.ISE_RUNTIME.get_rescue_level().
System.MissingMethodException: Metoden hittades inte: Int32 EiffelSoftware.Runtime.ISE_RUNTIME.get_rescue_level().
vid EiffelSoftware.Library.Wel.support.Impl.WEL_APPLICATION_MAIN_WINDOW.$$application_cell(WEL_APPLICATION_MAIN_WINDOW Current)
vid EiffelSoftware.Library.Vision2.$$Implementation.kernel.Impl.EV_APPLICATION_IMP.application_cell()
il_type_name: System.MissingMethodException
Regards
Anders
--- In
[hidden email], "larryliuming" <larryliuming@...> wrote:
>
>
>
> Hi, Anders,
>
> To use new Windows Style (actually newer version Microsoft Common Control), you need to have "your_project_name.rc" and "your_project_name.exe.manifest" file in your project when C compiling. The contents of two files are same for different projects most of times.
>
> For example, the rc file for docking simple project ("$ISE_LIBRARY/examples/docking/simple") project is "docking_simple.rc" which content is:
>
> 1 24 "docking_control.exe.manifest"
>
> And there is another file "docking_simple.exe.manifest" which content is:
>
> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
> <dependency>
> <dependentAssembly>
> <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" /> </dependentAssembly>
> </dependency>
> </assembly
>