登录
首页 » Windows开发 » 一个很好的类,左边一个列表框,中间四个按钮,右边一个列表框。中间的四个按钮可以实现两个列表框内容的移动。 使用方法:只要将两个列表框以及四个按钮的ID传给类即可...

一个很好的类,左边一个列表框,中间四个按钮,右边一个列表框。中间的四个按钮可以实现两个列表框内容的移动。 使用方法:只要将两个列表框以及四个按钮的ID传给类即可...

于 2022-01-25 发布 文件大小:9.32 kB
0 133
下载积分: 2 下载次数: 1

代码说明:

一个很好的类,左边一个列表框,中间四个按钮,右边一个列表框。中间的四个按钮可以实现两个列表框内容的移动。 使用方法:只要将两个列表框以及四个按钮的ID传给类即可-a good class, left a list box, the middle four buttons, the right side of a box. Among the four buttons can be achieved List Box 2 mobile content. Use : As long as two to the list box and four button ID can pass category

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 使用 C编写计算器
    (堆栈)鉴于算术表达式中缀表示法,例如,24 (3 + 5) = 5, 写一个程序,它读取一个单一输入行中给出的表达式,解析它,它的计算结果和 给出了输出值作为单个整数或打印的字符串输入错误"如果输入的格式不正确。 在表达式中的数字是整数。经营者来自集 {+,-,*,/,%、 (,)}, 经营行为对整数,返回整数,根据其平时 de nitions。我有假设 运营商,那就是,之间通常优先从最低到最高,{+,-},*,/,一元-和括号,在哪里, + 和二进制-处于同一级别的优先级的和有左到右结合性。我 程序正确识别并返回一个错误如果修复表达式中的输入的格式不正确。
    2022-09-10 17:05:03下载
    积分:1
  • 删除或移动正在使用的文件
    删除或移动正在使用的文件-deleted or are using a mobile document
    2023-04-30 14:20:02下载
    积分:1
  • BHO方式的读卡器封装
    VS2008环境下对明华读卡器函数进行封装操作,可以生成二次开发的控件,很有一定指导意义,现供大家参考
    2022-01-21 05:40:35下载
    积分:1
  • matlab和vc++编程的例子,用到matcom进行文件的转换
    matlab和vc++编程的例子,用到matcom进行文件的转换-matlab and vc++ programming example files used in the conversion matcom
    2022-01-25 14:30:07下载
    积分:1
  • DSP库LIB
    这是stm32f1xx 的DSP官网库,安装完就可以用。 This user manual describes the STM32F10x DSP (digital signal processing) library, which is a suite of common digital signal processing functions: a suite of common digital signal processing functions: ● PID controller ● Fast Fourier transform ● FIR and IIR filters The library contains C and assembly functions. The assembly code is ported on ARM®, GCC and IAR Systems™ assemblers.
    2022-08-18 11:37:11下载
    积分:1
  • 用了好多公式制作的程序,让程序中的火花也依据万有引力的作用运动。程序简单,但是可以给你许多以后在做小动画时的启示,他们其实并不难。...
    用了好多公式制作的程序,让程序中的火花也依据万有引力的作用运动。程序简单,但是可以给你许多以后在做小动画时的启示,他们其实并不难。-formula with a lot of the production process for the procedure is also based on gravitation sparks of movement. A simple, but it gave you a lot to do in the future when a small animation of enlightenment, they are not that difficult.
    2022-04-25 09:10:36下载
    积分:1
  • 矩阵乘法不使用数组
    matrix multiplication without using array only malloc and calloc are used to get memory and multiplied matrix
    2022-10-01 11:20:03下载
    积分:1
  • 局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起,形成一个程序,这样用户理解起来,更加直观一点(其实这样做也是为了方便调试,大...
    局域网文件传输 为了设计统一和用户操作方便,我们希望将服务端与客户端融合在一起,形成一个程序,这样用户理解起来,更加直观一点(其实这样做也是为了方便调试,大家可以在本机上测试,自己传文件给自己)。所以,我们在程序中需要使用两个Winsock控件,一个负责监听,一个负责发送,当发送端连接成功以后,便选择一个待发送的文件(可以是任意二进制文件),接着将文件名和文件字节长度发送给接收端,接收端收到这个消息以后,将文件名和文件长度解析出来,然后通知发送端可以开始发送文件;发送端读到这个消息之后,将文件流以字节的形式发送到接收端,接收端收到后,将二进制流回写,保存成文件即可。这里要注意两点,一个是由于Winsock每次最大传输8K的内容,所以需要将文件分解,每次传输固定数目的字节流,这样发送和接收时都可以根据这个数目来判断文件传输的进程,一旦字节流数目等于文件的大小,就需要关闭相应的文件句柄;另一点是由于我只使用一个Winsock控件接收,接收文本时需要注意要将UNICODE转码,解析成可识别的信息。 -LAN file transfer to uniform design and user convenience, we hope it will end service and client together and form a process so that users understand, a more intuitive 1:00 (in fact, do so in order to facilitate debugging, you can test the machine, its own text- items for himself). Therefore, we need procedures in the use of two Winsock Control, a charge of wiretapping, a charge of this, when the transmitter connects successfully, it will be a choice to send the document (can be arbitrary binary files), will then file names and the
    2022-04-14 22:25:12下载
    积分:1
  • 一个图片切割的JS程序(带拖放、缩放效果),也可以换图片啊...
    一个图片切割的JS程序(带拖放、缩放效果),也可以换图片啊-A picture of JS cutting procedures (with drag and drop, zooming effect), can also exchange pictures ah
    2023-03-18 09:55:03下载
    积分:1
  • 在不改变系统记事本源代码的前提下,为系统记事本增添统计计数功能。...
    在不改变系统记事本源代码的前提下,为系统记事本增添统计计数功能。-Notepad without changing the system under the premise of origin code for the system to add statistical counting function Notepad.
    2022-02-05 21:25:43下载
    积分:1
  • 696518资源总数
  • 105540会员总数
  • 37今日下载