当前位置:首页 » 注册证书 » 串口控件注册

串口控件注册

发布时间: 2021-03-12 02:59:53

㈠ 如何解决MS串口通信控件MSCOMM32.OCX "建立空文档失败" 的问题

部件mscomm32.ocx不能正确注册

通常有一些小程序是基于串口控制控件MSCOMM32.OCX的,然而我们经常会遇到”部件mscomm32.ocx或其附件之一不能正确注册“这样的问题,而导致这些小程序无法运行。而解决办法就是在计算机上重新注册mscomm32.ocx组件。
具体步骤:
下载控件所需件文件MSCOMM32.rar,解压后得到文件MSCOMM32.OCX;
将文件MSCOMM32.OCX复制粘贴到C:\Windows\system32目录下,如果是64位的系统,则放在C:\Windows\sysWOW64目录下;
开始,运行cmd,打开命令行,粘贴代码 regsvr32 C:\Windows\system32\MSComm32.ocx,然后按enter,稍后会提示注册成功。如果是64位操作系统,则是运行代码 regsvr32 C:\Windows\sysWOW64\MSComm32.ocx;
如果提示注册成功,以下步骤可以忽略。
如果遇到提示”模块。。。已加载,但对 DllRegisterServer 的调用失败。。。错误代码。。。“,一般Windows7系统都会产生这样的问题,是因为Win7的安全性比较高,在运行里调出cmd命令行的时候实际上是没有高级权限的。因此,我们在操作运行中,输入cmd,然后不要急于按下Enter回车键,而是按下Ctrl+Shift+Enter组合键,这种情况下,就会提示是否以管理员身份运行cmd了,点击确定。然后再执行上面的第3步,就会发现成功了。

㈡ mfc串口控件注册32和64位的文件一样吗

VS2010本身并不自带MSCOMM控件,因此在Win7、win8/8.1系统中使用VS2010进行串口编程时,
在COM控件一栏中没法找到。
网上解决这个问题的文章很多,但尝试了很多种方法都没有解决,原因是很多文章都是没有
具体的给出具体的细节,导致有些操作没法进行。

这里依据自己的尝试成功的例子给出方法。
(1)基于以下环境实现的
(环境对实际的情况有影响,win7以及VS2012/2013用户可以使用该方法进行尝试,但不保证能成功)

Windows 8.1 X64

VS2010
(2)下载MSCOMM控件包

(3)将下载的文件解压,并将其拷贝到 C:\Windows\SysWOW64 目录下
本机器 C:\Windows\System32 下无法注册成功,这里可以根据电脑的系统进行尝试。
(4)可以先使用 管理员权限 运行 Setup.bat 进行安装和注册,但本人使用此方法尝试失败。
最后使用以下方法注册成功:
在 C:\Windows\SysWOW64 搜索到cmd.exe,使用 管理员权限 打开,然后输入
regsvr32 C:\Windows\SysWOW64\mscomm32.ocx
然后提示注册成功。
(5)此时可以在VS2010中建立一个MFC工程,应该能够在COM组件中看到
Microsoft communications control,version 6.0
将其勾选上之后,在工具栏就能看到 电话标志 的空间图标了。

㈢ 串口控件!!!!急!!!

你的代码中len没有赋值,在代码safearray_inp=variant_inp;后面加入下面这句
len=(USHORT)safearray_inp.GetOneDimSize();
//得到有效数据长度
解释以下你的疑问:
for(k=0;k
评论
0
0
加载更多

㈣ 介绍一下“串口控件初始化程序”

在VB中编写串口通信程序都是用MSComm 控件
说明

MSComm 控件提供下列两种处理通讯的方式:
1、事件驱动通讯是处理串行端口交互作用的一种非常有效的方法。在许多情况下,在事件发生时需要得到通知,例如,在 Carrier Detect (CD) 或 Request To Send (RTS) 线上一个字符到达或一个变化发生时。在这些情况下,可以利用 MSComm 控件的 OnComm 事件捕获并处理这些通讯事件。OnComm 事件还可以检查和处理通讯错误。所有通讯事件和通讯错误的列表。
2、在程序的每个关键功能之后,可以通过检查 CommEvent 属性的值来查询事件和错误。如果应用程序较小,并且是自保持的,这种方法可能是更可取的。例如,如果写一个简单的电话拨号程序,则没有必要对每接收一个字符都产生事件,因为唯一等待接收的字符是调制解调器的“确定”响应。

每个使用的 MSComm 控件对应着一个串行端口。如果应用程序需要访问多个串行端口,必须使用多个 MSComm 控件。可以在 Windows“控制面板”中改变端口地址和中断地址。

尽管 MSComm 控件有很多重要的属性,但首先必须熟悉几个属性。

属性 描述
CommPort 设置并返回通讯端口号。
Settings 以字符串的形式设置并返回波特率、奇偶校验、数据位、停止位。
PortOpen 设置并返回通讯端口的状态。也可以打开和关闭端口。
Input 从接收缓冲区返回和删除字符。
Output 向传输缓冲区写一个字符串。

下面这个简单的例子演示了用调制解调器进行基本的串行通讯:
Private Sub Form_Load ()
' 保存输入子串的缓冲区
Dim Instring As String
' 使用 COM1。
MSComm1.CommPort = 1
' 9600 波特,无奇偶校验,8 位数据,一个停止位。
MSComm1.Settings = "9600,N,8,1"
' 当输入占用时,
' 告诉控件读入整个缓冲区。
MSComm1.InputLen = 0
' 打开端口。
MSComm1.PortOpen = True
' 将 attention 命令送到调制解调器。
MSComm1.Output = "ATV1Q0" & Chr$(13) ' 确保
' 调制解调器以"OK"响应。
' 等待数据返回到串行端口。
Do
DoEvents
Buffer$ = Buffer$ & MSComm1.Input
Loop Until InStr(Buffer$, "OK" & vbCRLF)
' 从串行端口读 "OK" 响应。

' 关闭串行端口。
MSComm1.PortOpen = False
End Sub

㈤ 请问你知道安装包制作如何注册ocx控件吗,使用VS2010

一般是通过regsvr32注册,你转换成对应的脚本语言就行。

㈥ 在64位机器上注册串口控件成功,为什么不能定义控件变量

样你的注册控件就能顺利在目标机器上注册,能被其他程序锁使用,反安装的时候也不... 或者在Installation Designer-Media-Path Variables里面查看其他变量定义 第二步:左边

㈦ 关于MSFlexgrid控件(注册)的一个小问题

未安装VC使用activeX控件- -Tag: 串口控件 注册

在使用串口控件时,在没有装VC的机器上碰到问题
regsvr32 注册成功,但仍然不能使用,经查找是LicenseKey的问题
只需在创建控件时增加下列几行即可
WCHAR pwchLicenseKey[] =
{
0x0043, 0x006F, 0x0070, 0x0079, 0x0072, 0x0069,
0x0067, 0x0068, 0x0074, 0x0020, 0x0028, 0x0063,
0x0029, 0x0020, 0x0031, 0x0039, 0x0039, 0x0034,
0x0020
};
BSTR bstrLicense = ::SysAllocStringLen(pwchLicenseKey,
sizeof(pwchLicenseKey)/sizeof(WCHAR));
if(!m_ComPort.Create(NULL,0,CRect(0,0,0,0),AfxGetMainWnd(),
IDC_MSCOMM1,NULL,FALSE,bstrLicense))
{
AfxMessageBox("Failed to create OLE Communications Control\n");
return -1; //fail to create
}
......
::SysFreeString(bstrLicense);
具体参考原文见下:
-----------------------------------------------------------------------------------------------------
This article was previously published under Q151771
SUMMARYThe LicReqst sample illustrates how to use the IClassFactory2 interface to request an object's License key.

The following file is available for download from the Microsoft Download Center:

Licreqst.exe

For additional information about how to download Microsoft Support files, click the following article number to view the article in the Microsoft Knowledge Base:
119591 How to Obtain Microsoft Support Files from Online Services

Microsoft scanned this file for viruses. Microsoft used the most current virus-detection software that was available on the date that the file was posted. The file is stored on security-enhanced servers that help to prevent any unauthorized changes to the file. NOTE: Use the -d option when running Licrqst.exe to decompress the file and recreate the proper directory structure.
MORE INFORMATIONThe LicReqst sample is a dialog-based MFC application that illustrates how to use the IClassFactory2 interface to request an object's License key. LicReqst displays the ProgID of each of the currently registered ActiveX controls in a Listbox. When one of the displayed ProgID's is selected, an instance of the corresponding control is created and then asked for it's License key. If a valid key is returned, LicReqst displays the key and enables the "Copy to Clipboard" button that allows the License key to be copied to the Clipboard. The License key can then easily be pasted into code that uses the CWnd::CreateControl method to dynamically create an instance of the Control.

LicReqst creates a textual version of the License key data in the form of a declaration of an array of WCHAR when ing the key to the Clipboard. This is done because the License key data could contain non-printable characters. A human-readable version of the License key data is also provided for reference and is included inside a Comment block in the final string that is copied to the Clipboard.

For example, if an object uses the string "Copyright (c) 1994" (without the quotes) for its License key, LicReqst would generate the following block of text that could be copied to and pasted from the Clipboard:
/*
Copyright (c) 1994
*/

WCHAR pwchLicenseKey[] =
{
0x0043, 0x006F, 0x0070, 0x0079, 0x0072, 0x0069,
0x0067, 0x0068, 0x0074, 0x0020, 0x0028, 0x0063,
0x0029, 0x0020, 0x0031, 0x0039, 0x0039, 0x0034,
0x0020
};

You can use the previous block of text in code that creates an instance of the Licensed object, and you can use the pwchLicenseKey variable to specify the object's License key.

For example, if MFC code is dynamically creating an instance of a Licensed ActiveX Control using the Create method of a Visual C++ Component Gallery generated wrapper class, the pwchLicenseKey variable can be used in the Create call like this:
BSTR bstrLicense = ::SysAllocStringLen(pwchLicenseKey,
sizeof(pwchLicenseKey)/sizeof(WCHAR));

m_MyControl.Create(NULL, WS_VISIBLE, CRect(10,10,10,10), this,
2, NULL, FALSE, bstrLicense);

::SysFreeString(bstrLicense);

Note how a BSTR is created from the pwchLicenseKey variable and how the BSTR is then used for the License key parameter in the Create call.

NOTE: The code in this sample that generates the text copied to the Clipboard makes the assumption that it is being executed on a little endian system (Intel x86-class processors). Because of this, it will not work correctly on big endian system. For these systems, it is still possible to use the Helper function used internally by the sample to request the License key from an object.

The sample uses a Helper function called RequestLicenseKey() to get the License key from an object based on its ProgID. The source code for the RequestLicenseKey() function is shown later in the Sample Code section.

To find other locations of interest in the sample source code, use the Find in Files feature of the Visual C++ Developer Studio to search for the string named SAMPLE CODE. This string has been used to tag each of the modified sections in the source code.

NOTE: Running the LicReqst sample on a licensed machine to obtain an object's License key, and then distributing that key to allow applications to be developed on other non-licensed machines, may be a violation of established rights. For more information and to determine if an object's License key can be legally redistributed, refer to the License Agreement provided with the object or contact the creator of the object. Sample Code// Compile options needed: none

///////////////////////////////////////////////////////////////////////
// SAMPLE CODE - Implementation of the RequestLicenseKey function
//
// The RequestLicenseKey function uses the IClassFactory2 interface
// to request a License key from an object specified by its ProgID.
//
// Parameters:
//
// [out] BSTR& bstrLicenseKey
// Upon return, this BSTR will contain either a valid
// License key or an error message. It is the caller's
// responsibility to call ::SysFreeString on this BSTR.
//
// [in] CString strProgID
// Specifies the ProgID of the object from which to request the
// License key.
//
//
// Return Value:
//
// A BOOL specifying success or failure. If TRUE is returned,
// the License key was retrieved successfully and the
// bstrLicenseKey parameter contains a valid License key. If
// FALSE is returned, the License key was not retrieved
// successfully and the bstrLicenseKey parameter contains a
// descriptive error string.
//
// Regardless of the return value, it is the responsibility of
// the caller to call ::SysFreeString on the returned bstrLicenseKey
// parameter.
//

BOOL RequestLicenseKey(BSTR& bstrLicenseKey, CString strProgID)
{
USES_CONVERSION;

LPCLASSFACTORY2 pClassFactory;
CLSID clsid;
BOOL bValidKeyReturned = FALSE;

// Get the CLSID of the specified ProgID.
if (SUCCEEDED(CLSIDFromProgID(T2OLE(strProgID), &clsid)))
{
// Create an instance of the object and query it for
// the IClassFactory2 interface.
if (SUCCEEDED(CoGetClassObject(clsid, CLSCTX_INPROC_SERVER, NULL,
IID_IClassFactory2, (LPVOID *)(&pClassFactory))))
{
LICINFO licinfo;

// Check to see if this object has a runtime License key.
if (SUCCEEDED(pClassFactory->GetLicInfo(&licinfo)))
{
if (licinfo.fRuntimeKeyAvail)
{
HRESULT hr;

// The object has a runtime License key, so request it.
hr = pClassFactory->RequestLicKey(0, &bstrLicenseKey);

if (SUCCEEDED(hr))
{
if(bstrLicenseKey == NULL)
bstrLicenseKey = ::SysAllocString(
L""); else // You have the license key. bValidKeyReturned = TRUE; } else // Requesting the License key failed. switch(hr) { case E_NOTIMPL: bstrLicenseKey = ::SysAllocString( L""); break; case E_UNEXPECTED: bstrLicenseKey = ::SysAllocString( L""); break; case E_OUTOFMEMORY: bstrLicenseKey = ::SysAllocString( L""); break; case CLASS_E_NOTLICENSED: bstrLicenseKey = ::SysAllocString( L""); break; default: bstrLicenseKey = ::SysAllocString( L""); } } else bstrLicenseKey = ::SysAllocString( L""); } else bstrLicenseKey = ::SysAllocString( L""); // Make sure you release the reference to the class factory. pClassFactory->Release(); } else bstrLicenseKey = ::SysAllocString( L""); } else bstrLicenseKey = ::SysAllocString( L""); // Return a BOOL specifying whether or not you were able to get a // valid license key. return bValidKeyReturned; }

㈧ 其他界面怎样使用第一个界面的串口控件我直接调用的时候提示串口未打开

在VB中是这样用的
If Frmtest.MSComm2.PortOpen = True Then Frmtest.MSComm2.PortOpen = False
Frmtest.MSComm2.CommPort = SetInfo.LightPort
Frmtest.MSComm2.Settings = "2400,N,8,1"
Frmtest.MSComm2.InputLen = 0
Frmtest.MSComm2.InBufferCount = 0
Frmtest.MSComm2.InputMode = comInputModeBinary '数据通过 设置Inputmode 属性以二进制形式取回。
Frmtest.MSComm2.PortOpen = True
窗体Frmtest应处于加载状态

㈨ 从界面MScomm串口控件如何初始化

procere TForm1.FormCreate(Sender: TObject);
begin
try
MSComm1.CommPort:=1;//设置串口号,即Com1口
MSComm1.Settings:='9600,N,8,1';
MSComm1.InputLen:=0;
MSComm1.InBufferSize:=1024;
MSComm1.InBufferCount:=0;
MSComm1.OutBufferCount:=0;
timer1.Enabled:=false;
// MSComm1.PortOpen:=false;
except
Application.MessageBox('串口初始化失败!','提示',0) ;
Application.Terminate ;
end;
end;

㈩ DELPHI XE2 的串口控件MSCOMM怎么安装和应用

Mscomm控件默认存在于delphi的ActiveX面板上,如果不存在,需要先导入该控件,步骤 :通过菜单 component---Import Activex component 打开Import Acitvex对话框。

如果列表中找不到该Microsoft Comm Control,那么点Add按钮找到Mscomm32.ocx,最后点Install..即可。

热点内容
美发店认证 发布:2021-03-16 21:43:38 浏览:443
物业纠纷原因 发布:2021-03-16 21:42:46 浏览:474
全国著名不孕不育医院 发布:2021-03-16 21:42:24 浏览:679
知名明星确诊 发布:2021-03-16 21:42:04 浏览:14
ipad大专有用吗 发布:2021-03-16 21:40:58 浏览:670
公务员协议班值得吗 发布:2021-03-16 21:40:00 浏览:21
知名书店品牌 发布:2021-03-16 21:39:09 浏览:949
q雷授权码在哪里买 发布:2021-03-16 21:38:44 浏览:852
图书天猫转让 发布:2021-03-16 21:38:26 浏览:707
宝宝水杯品牌 发布:2021-03-16 21:35:56 浏览:837