-
INS-Debug
基于VC++的INS数值解算显示程序,可以用来参考使用(The INS VC++ numerical solutions based on the VC++ ,and the program can be used to refer to direct use.)
- 2015-10-21 22:58:39下载
- 积分:1
-
CursorMouseDemo
创建并设置鼠标光标,VC++精选编程源码,很好的参考。(Create and set the mouse cursor, VC++ select programming source code, a good reference.)
- 2013-12-03 10:25:28下载
- 积分:1
-
CommTest485
测试com口程序Private Sub Form_Load()
Dim I As Integer
Dim Msg As String
Me.Enabled = False
Msg = 串行端口通讯测试 V & App.Major & . & App.Minor & App.Revision
cboCommSettings.Text = GetSetting(App.EXEName, frmCommTest , CommSettings , 2400,N,8,1 )
Me.Show
Me.Refresh
With MSComm1
For I = 1 To 16
Me.Caption = Msg & - 测试通讯端口:COM & I & ...
Me.Refresh
Delay 100
On Error Resume Next
.CommPort = I
.Settings = 2400,N,8,1
.PortOpen = True
.PortOpen = False
If Err = 0 Then cboCommPort.AddItem COM & Trim(I)
Next I
End With
cboCommPort.ListIndex = 0
optCommData(0).Value = True
Me.Caption = Msg & (Programming by WJY)
Me.Refresh
If cboCommPort.ListCount = 0 Then MsgBox 程序检测不到可用的串行端口!
Me.Enabled = True
End Sub
(test com port)
- 2015-07-23 10:40:18下载
- 积分:1
-
neural1
VB6 類神經網路運算 針對多點輸入及多點輸出(VB6 neural MULTI INPUT/OUTPUT)
- 2015-03-28 16:16:22下载
- 积分:1
-
huanghaibochengxu
黄海波老师lbm模拟的有关程序,模拟的相变有关现象(Huang Haibo LBM simulated the program, simulating the phase transition phenomenon)
- 2021-04-02 10:39:07下载
- 积分:1
-
HOOK
win7下可用的键盘钩子,能截获全局的按键信息,不用dll(available under win7 keyboard hook to intercept global keystrokes, without dll)
- 2012-06-10 21:15:15下载
- 积分:1
-
print_kyjt
这是黑龙江省瓦斯监控系统的打印程序,实现了从access数据库中读出数据在打印机上输出的功能,长期运行,性能稳定。()
- 2007-08-06 10:53:53下载
- 积分:1
-
Point
window编程中,指针结构体函数,很实用。(programming window, the pointer structure functions, very practical.)
- 2013-09-20 23:22:12下载
- 积分:1
-
HDF_read_guide
对HDF格式的MODIS遥感影像进行读取(MODIS imagery for HDF format for reading)
- 2013-12-19 09:56:52下载
- 积分:1
-
Wintab_Example
使用wintab开发的例子,VB开发环境,经过验证可以(Wintab32.dll Demo in VB6 ReadMe notes
*******************************************************
*******************************************************
A few notes on this before you play with it:
1) You cannot debug through much of the code! The reason for this is that the routine performs a Windows message hook for the window messages that normally go to the window. So when the user moves the mouse over a window, Windows generates all the messages and sends them to the window to respond. (examples are "MouseEnterWindow, MouseMove, MouseLeaveWindow"). Note these are different from the VB events which are similarly named but operate within VB, they are instead the actual messages Windows OS uses to respond. This is how windows does all of its GUI. Since a hook has been placed in the code, those messages go to the callback routine and thus get intercepted in the application. In debug, all code execution halts in the VB app. But windows keeps sending the messages to the cal)
- 2013-10-19 12:59:12下载
- 积分:1