CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 源码下载

资源列表

« 1 2 ... .52 .53 .54 .55 .56 10757.58 .59 .60 .61 .62 ... 199244 »
  1. VBrtfmdb

    0下载:
  2. VB保存rtf文件到Access数据库中,将test.rtf文件写入到db1.mdb中,以个之见,VB代码使用RichTextBox载入RTF文档,然后再把文档内容存储在数据库中,分两步来进行了,并不是直接把RTF存储在Access中-VB save rtf file to Access database file to be written test.rtf db1.mdb in to an opinion, VB code uses the RichTextBox load RTF docu
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-24
    • 文件大小:46.47kb
    • 提供者:cpudn40
  1. shendraw

    0下载:
  2. VB绘制肾形图案源代码,肾形图案说不上是规则还是不规则,呈线性特点吧。初始化绘图环境将Picture1定制成一个中心点坐标为(0,0)的坐标系。-VB source code to draw the kidney-shaped pattern, kidney-shaped or irregular pattern can not be considered the rule, linear features it. Initialization drawing environment will
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1.93kb
    • 提供者:gpudn40
  1. DSNvb

    0下载:
  2. VB源码实现建立DSN,删除DSN,编译后即运行建立DSN的功能,如果要显示对话,可使用Me.Hwnd代替vbAPINull。-VB source code to achieve the establishment DSN, delete the DSN, compiled after running create a DSN function, if you want to display a dialog, you can use Me.Hwnd replaced vbAPINull.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1.65kb
    • 提供者:gpudn40
  1. vbwinpath

    0下载:
  2. VB获取系统环境变量,枚举出系统所有的环境变量信息,左侧为变量名,右侧为变量内容,类似在Windows高级设置里查看环境变量类似。-VB acquisition system environment variables, enumerate all system environment variable information, on the left as a variable name, the right to the variable content, similar to the vi
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2.01kb
    • 提供者:gpudn40
  1. split_string

    0下载:
  2. C++ 写的字符串分割程序,实现从一个字符串取出特定字符-C++ write string segmentation procedures to achieve remove specific characters from a string
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-26
    • 文件大小:96.11kb
    • 提供者:ych
  1. zuheforms

    0下载:
  2. VB6.0源码下载:VB创建组合的圆形窗口,单击窗口则调用SetWindow子过程设置窗口形状,双击窗口则调用Reset子过程恢复窗口形状。圆形组合窗体的实现过程中将两个图形区域相加(叠加),也可将两个区域相减,或进行进行“或”操作,“异或”操作等。   Module1.bas中的SetWindow子过程实现设置窗口形状,创建最外面的大圆区域,创建中间的圆区域,创建最里层的小圆区域,用大圆减去中间的圆得到的区域保存在hSrcRgn1,用得到的区域加上小圆并保存在hSrcRgn1;  
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:182.19kb
    • 提供者:cpudn41
  1. vbfloatform

    0下载:
  2. VB悬浮窗口代码,悬挂式窗口的VB源码下载,Module1.bas中声明了程序需要用到的常量和API函数声明,可以试着在调用SetWindowPos函数时使用这些常量或它们的组合,得到其他效果-VB code floating window, hanging window VB source download, Module1.bas declared API function declarations and constants need to use the program, you can
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:3.93kb
    • 提供者:cpudn42
  1. GetWindowLong

    0下载:
  2. 一个VB6消息相关源码下载,截取消息,并将消息交给wndproc过程处理.取消消息截取,结束子分类过程.Module1.bas中,定义全局变量,存放控件标志性数据,wndproc函数就是用来接收子类时截取的消息的,将截取下来的消息存放在msg参数中.检测到消息,就可以加入处理代码。需要注意,如果这儿不加入任何代码,则相当于吃掉了这条消息-A message related VB6 source code download, intercept messages and the processin
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2.06kb
    • 提供者:cpudn43
  1. vbmenuskdlsker

    0下载:
  2. VB6.0动态装入菜单项,把打开的文件记录保存,显示历史记录,下次打开直接点击记录中的文件就可以,现在有好多软件都有类似这样的功能。实现方面:声明数组用来存储菜单中最近打开的三个文件的名称,显示Open对话框,将filenamearry(1)存储到filenamearry(2),将filenamearry(0)存储到filenamearry(1)-VB6.0 dynamically loaded menu item to open the file record keeping, display
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1.85kb
    • 提供者:cpudn44
  1. vbmenusnew

    0下载:
  2. 在VB中制作一个常见的菜单,类似窗口左上角的“菜单”命令,菜单中加入了操作命令,你可以在窗口的文本框中拷贝入一段代码,然后按照菜单中的命令逐一测试菜单功能。对VB初学者来说,虽然挺简单的源码,但容易理解,对学习VB6相当有帮助-Production in VB a common menu, similar to the upper left corner of the window " menu" command added to the menu command, you c
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1.8kb
    • 提供者:cpudn45
  1. dragfileopen

    0下载:
  2. VB拖放文本文件的操作示例,也就是拖放打开文本文件,只要是文本类型的文件,都可采用拖放到本窗口的方法直接打开文件,是挺实用的一个VB源码,操作对象为RichTextBox。-VB drag and drop text file operations example, open a text file that is drag and drop, as long as the text file types, can use drag and drop method to the window t
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1.89kb
    • 提供者:bpudn37
  1. vbcopydatabase

    0下载:
  2. VB复制数据库结构的小程序,复制数据库结构,调用VB安装目录中的数据库,路径一般是D:\Program Files\Microsoft Visual Studio\VB98,如果不是这个目录烦请修改一下-VB copy of the database structure applet, copy the database structure, calling VB database installation directory path is usually D: \ Program Files
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:1.53kb
    • 提供者:bpudn38
« 1 2 ... .52 .53 .54 .55 .56 10757.58 .59 .60 .61 .62 ... 199244 »
搜珍网 www.dssz.com