English 中文(简体)
土著业主未能在窗口上申请C# WPF。
原标题:NativeProcess fails to run C# WPF application on windows

OK

我们有一份Adobe Air(AS3)申请,使用我们WPF的申请。 但世界森林论坛的申请未能以这种方式运作。 i 在<代码>中发现以下错误信息: 内容提要

Faulting application name: Easysoft_MultiTouch_Document.exe, version: 1.0.0.0, time stamp: 0x4f0f2f9e
Faulting module name: KERNELBASE.dll, version: 6.1.7600.16385, time stamp: 0x4a5bdfe0
Exception code: 0xe0434352
Fault offset: 0x000000000000aa7d
Faulting process id: 0xeac
Faulting application start time: 0x01ccd20c9e406d25
Faulting application path: E:AppsPDFProgramEasysoft_MultiTouch_Document.exe
Faulting module path: C:Windowssystem32KERNELBASE.dll
Report Id: dc656dc1-3dff-11e1-8870-00268330b66c

这里是Adobe Air代码,用于管理WPF的应用:

// following condition is true 
 if(NativeProcess.isSupported)
        {
        var file:File = new File("E:\Apps\GalleryProgram\Easysoft_MultiTouch_Document.exe");
        trace(file.name);
        var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
        nativeProcessStartupInfo.executable = file;

        var process:NativeProcess = new NativeProcess();


        process.start(nativeProcessStartupInfo);
        //....
   }

我写了另一份C#申请,以管理该妇女论坛的可起诉档案,但该申请也失败。

如何解决这一问题? 世界森林论坛的申请能否以这种方式实施? 任何解决办法?

Thanks in advance...

最佳回答

你从这一过程中看到的特别例外是0xe0434352。 这表明存在管理上的例外。 这意味着,最有可能开始WPF进程,至少要达到装载CLR和操作管理规范的程度,然后放弃未经处理的例外。

这就是说,在《世界森林框架》申请中,过失最有可能发生。 您是否证实它能够自行操作。 如果是这样的话,我会开小.子,在申请开始时,通过Adobe Air来管理假想,看为什么这一进程正在崩溃。

问题回答

我将尝试在妇女论坛的申请中引入一个单独点,并将例外记录在文本档案中,以便你掌握关于错误的更多信息,例如:

        AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

然后,在报警中,将任何例外细节写到档案中:

    static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
    {
        if (e.IsTerminating)
        {
            // Add your logging code here.
        }
    }

这样,你就可以获得更多关于坠毁原因的信息,你可以在那里 gr。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签