找不到指定的模块

找不到指定的模块

本文介绍了无法加载DLL'olepro32.dll':找不到指定的模块。 (来自HRESULT的异常:0x8007007E)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨大家我在同一个designer.cs中收到错误



当有墨迹的图片试图加载时。



你可以帮我吗。

谢谢。





Hi Guys i am getting the error in the fellowing designer.cs

when the form having inkpicture is trying to load.

can you please help me.
thanks .


this.inkPicture1.BackColor = System.Drawing.SystemColors.ControlLightLight;
          this.inkPicture1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
          this.inkPicture1.Cursor = System.Windows.Forms.Cursors.WaitCursor;//the error at the line bold(Unable to load DLL 'olepro32.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
      )    this.inkPicture1.Dock = System.Windows.Forms.DockStyle.Fill;
          this.inkPicture1.Location = new System.Drawing.Point(0, 0);
          this.inkPicture1.MarginX = -2147483648;
          this.inkPicture1.MarginY = -2147483648;
          this.inkPicture1.Name = "inkPicture1";
          this.inkPicture1.Size = new System.Drawing.Size(714, 514);
          this.inkPicture1.TabIndex = 0;
          this.inkPicture1.UseWaitCursor = true;
          this.inkPicture1.WaitOnLoad = true;
          this.inkPicture1.Stroke += new Microsoft.Ink.InkCollectorStrokeEventHandler(this.inkPicture1_Stroke);

推荐答案



这篇关于无法加载DLL'olepro32.dll':找不到指定的模块。 (来自HRESULT的异常:0x8007007E)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 12:57