介绍VB里的各种控件的使用方法,窗口控制,图像编程以及OCX等内容,还提供了一个API集供参考.

源代码在线查看: 27.txt

软件大小: 1085 K
上传用户: libhzsmo
关键词: OCX API 控件 图像编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				导入注册表设置
				You can use just a few lines of code to import Registry settings. If you have an application called myapp.exe and a Registry file called myapp.reg, the following code will put those settings into the Registry without bothering the user.
				
				Dim strFile As String
				strFile = App.Path & "\" & opts.AppExeName & ".reg"
				If Len(Dir$(strFile)) > 1 Then
				    lngRet = Shell("Regedit.exe /s " & strFile, vbNormalFocus)
				End If  			

相关资源