大漠插件

Posted tangpeng97

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大漠插件相关的知识,希望对你有一定的参考价值。

一.注册大漠插件

两种方式

1.Cmd手动注册dll

regsvr32 D:Project大漠DMTestdm.dll

2.程序注册dll

        static string AutoRegCom()
        {
            string strCmd = @"regsvr32 D:Project大漠DMTestdm.dll";
            string rInfo;
            try
            {
                Process myProcess = new Process();
                ProcessStartInfo myProcessStartInfo = new ProcessStartInfo("cmd.exe");
                myProcessStartInfo.UseShellExecute = false;
                myProcessStartInfo.CreateNoWindow = true;
                myProcessStartInfo.RedirectStandardOutput = true;
                myProcess.StartInfo = myProcessStartInfo;
                myProcessStartInfo.Arguments = "/c " + strCmd;
                myProcess.Start();
                StreamReader myStreamReader = myProcess.StandardOutput;
                rInfo = myStreamReader.ReadToEnd();
                myProcess.Close();
                rInfo = strCmd + "
" + rInfo;
                return rInfo;
            }
            catch (Exception ex)
            {
                return ex.Message;
            }
        }

 


 

二.初始化大漠类

引用:using Dm;

声明大漠插件:

dmsoft dm = new dmsoft();

 

以上是关于大漠插件的主要内容,如果未能解决你的问题,请参考以下文章

按键精灵用大漠插件找多字,怎样能将找到的字文本输出?

大漠插件解除窗口绑定命令

大漠插件 怎么在相同字里找到需要的字

易语言大漠插件绑定窗口问题

大漠插件相同窗口可以绑定几次

求高手帮忙写一个,大漠插件绑定窗口然后不停按123456