CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 搜索资源 - Edit Box VC

搜索资源列表

  1. qidong

    0下载:
  2. 利用VC++编程实现程序自动启动。在主界面对话框中有编辑框(EDIT BOX),圆形按钮(RADIO BUTTON)和普通按钮(COMMON BUTTON)组成
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1.82kb
    • 提供者:刘学良
  1. ReadEditDemo

    0下载:
  2. vc 创建完全只读(没有输入焦点,不能选择)的编辑框\ReadEditDemo-vc create entirely read-only (no input focus, can not choose) the edit box \ ReadEditDemo
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-27
    • 文件大小:28.56kb
    • 提供者:汪云芳
  1. NIDS

    0下载:
  2. 一个VC++ 网络入侵检测模块及程序代码,源代码完整,包括所需控件都在压缩包内,用VC编写网络软件的时候用得上。    CMainFrame* p_Frame //保持筐架类的指针    CEdit* m_pEdit //保存编辑框类的指针    CListCtrl* m_pList //保存列表类的指针    CTreeCtrl* m_pTree //保存树型控件的指针    CComboBox* m_pComboBox //保存组合筐的指针   以下的成员
  3. 所属分类:Network Security

    • 发布日期:2017-04-10
    • 文件大小:1.49mb
    • 提供者:云梦泽
  1. time

    0下载:
  2. VC++定时关机、重启程序,还可实现定时注销,点击隐藏后可通过快捷键Ctrl+Alt+G返回前台。在编辑框中输入分钟数,按下定时按钮即可实现定时关机-VC++ regular shutdown, restart the program, but also the timing canceled, click hidden by shortcuts Ctrl+Alt+G returns the foreground. Press the timer button in the edit box,
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-22
    • 文件大小:27.01kb
    • 提供者:小叶
  1. vctextform

    0下载:
  2. VC++在编辑框控件中追加文本内容,点击按钮即可将内容添加至指定的文本框中,是一个有效提升软件操作体验的小技巧,值得学习一下源代码的实现。-VC++ append text content in the edit box control, click the button to add content to the specified text box is a valid upgrade software tips of operating experience, is worth learn
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-25
    • 文件大小:10.37kb
    • 提供者:吴国玉
  1. inputstring

    0下载:
  2. VC++限制编辑框输入文本的长度,也就是像WEB表单中的输入框功能类似,限制用户输入字符的数量,-VC++ to limit the length of the text in the edit box, which is similar to the like in a Web form input box to restrict the user to enter the number of characters
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-20
    • 文件大小:10.22kb
    • 提供者:程妤
  1. AsynchInvoke

    0下载:
  2. 基于VC++异步调用的简单源码例子,定义一个字符串,设计循环,格式化字符串,设计编辑框文本,异步调用的实现实例,VC源码下载。 -Based on a simple asynchronous call VC++ source code examples, define a string, the design cycle, the format string, the text edit box design, implementation examples asynchronous cal
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-03
    • 文件大小:18.41kb
    • 提供者:余志明
  1. AsynchInvoke

    0下载:
  2. 基于VC++异步调用的简单源码例子,定义一个字符串,设计循环,格式化字符串,设计编辑框文本,异步调用的实现实例,VC源码下载。-Based on a simple asynchronous call VC++ source code examples, define a string, the design cycle, the format string, the text edit box design, implementation examples asynchronous call,
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-09
    • 文件大小:19.08kb
    • 提供者:陈孟浩
  1. MutexSynch

    0下载:
  2. 摘要:VC/C++源码,系统相关,互斥对象,线程同步 利用互斥对象实现线程同步,当勾寻使用互斥进行同步”按钮时,可启动一个线程向编辑框写入字符A,然后再启动一个线程向边界框写入字符B,可以看到只被执行一个线程,线程同步问题请下载源码参阅。-Abstract: VC/C++ source, system-related, mutex objects, thread synchronization synchronize threads using the mutex object, when
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-24
    • 文件大小:18.95kb
    • 提供者:海少
  1. Demo

    0下载:
  2. VC自带的列表框控件功能是非常有限的,一个实例结合列表框编辑框使用-VC' s own list box control functions are very limited, an instance of the use of a combination list box edit box
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-09
    • 文件大小:1.79mb
    • 提供者:suxun
  1. joseph

    0下载:
  2.  首先,认识并了解著名的约瑟夫问题:已知n个人(n>=1)围坐一圆桌周围,从1号开始顺序编号。从序号为1号的人开始报数,顺时针数到m的那个人出列:他的下一个人又从1开始报数,数到m的那个人又出列;依此规则一直重复下去,直到所有人全部出列,要求:求出最后一个出列人的编号。  本程序运用VC++ 6.0开发工具,利用MFC框架构造一个基于对话框的应用程序,用户根据对话框的界面提示,了解约瑟夫问题,并且在对话框上键入总人数(n) 和出列数(m) 。由编辑框输出结果,结果显示为最后一个出列人的
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-09
    • 文件大小:1.83mb
    • 提供者:Wang Hao
  1. AEExam

    0下载:
  2. VC6+AE9.3实现GIS基本框架和部分功能(浏览、编辑、量算长度),shape图层属性浏览(无模式对话框,可以改变对话框的大小,比较实用),是学习Gis-VC+AE的实用参考材料。附件为全球三维地形图(GEOtiff格式)-VC6+ AE9.3 achieve GIS basic framework and some functions (browse, edit, and calculating the length), shape the Layer Properties view (n
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-28
    • 文件大小:10.33mb
    • 提供者:dmagic
搜珍网 www.dssz.com