VB文章集(含API、窗口、数据库、多媒体、系统、文件、等等)

源代码在线查看: 27.txt

软件大小: 1312 K
上传用户: yuexiaolin12345
关键词: 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  			

相关资源