-
windows窗口下的滚动条制作,界面部分可在工具栏下添加
windows窗口下的滚动条制作,界面部分可在工具栏下添加-windows under the scroll bar window production, the interface part of the toolbar, add
- 2023-07-18 03:55:03下载
- 积分:1
-
是一个能够在窗体上实现超级链接的程序,或者发送email;
是一个能够在窗体上实现超级链接的程序,或者发送email;-is one in the form of hyperlinks to achieve the procedure, or send email;
- 2022-02-01 00:02:19下载
- 积分:1
-
该代码例子提供了一个类似LED数码管的静态控件类,可以应用到各种控件面板指示中。...
该代码例子提供了一个类似LED数码管的静态控件类,可以应用到各种控件面板指示中。-The code examples provide a similar LED digital control of the static categories, can be applied to various control panel instructions.
- 2023-08-01 05:45:02下载
- 积分:1
-
一个背景颜色渐变的文字类
一个背景颜色渐变的文字类--A font class whose background color can be gradually changed.
- 2022-03-19 03:10:48下载
- 积分:1
-
实现的具有滑动功能的static类,用于控制声音的大小
实现的具有滑动功能的static类,用于控制声音的大小-Achieved with a sliding function of static class is used to control the size of the sound
- 2023-06-03 00:50:03下载
- 积分:1
-
windows 平台,数字时钟源代码,vc++6.0
windows 平台,数字时钟源代码,vc++6.0-windows platform, digital clock source code, vc++ 6.0
- 2023-04-19 11:35:04下载
- 积分:1
-
the software used to detect SQL connectivity and the use of the basic SQL, the S...
本软件用于检测SQL的连接和对SQL的基本使用,可以在我们连接SQL时起到很好的帮助作用-the software used to detect SQL connectivity and the use of the basic SQL, the SQL link when we played a very good role in helping
- 2023-06-25 16:10:03下载
- 积分:1
-
C语言下实现阶乘窗口居多,好
C语言的的windons下大数阶乘实现,运行良好.感觉很不错,相反啊独特.需要的可以打开开看,主要运用乘法思想的原理编写而成-C language of the majority of factorial windons under achieving, well-functioning. The feeling is very good, contrary ah unique. The need to be opened opened, the main use of the principle of multiplication thinking prepared
- 2023-09-06 09:40:03下载
- 积分:1
-
src.zip: Workshop 8.1 工程 db.zip: 数据库备份,可在MS SQL 2000企业管理器中直接还原数据库...
src.zip: Workshop 8.1 工程 db.zip: 数据库备份,可在MS SQL 2000企业管理器中直接还原数据库-src.zip : Workshop 8.1 works db.zip : database backup, in MS SQL 2000 Enterprise Manager database directly Reduction
- 2023-03-30 00:40:03下载
- 积分:1
-
public class Server extends Thread { Client client int counter public Server(Cli...
public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter < 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw new RuntimeException("counter >= 10") } public static void main(String[] args) { Client c = new Client() Server s = new Server(c) c.start() s.start() } } class Client extends Thread { Vector queue public Client() { this.queue = new Vector() } public void run() { while (true) { if (! (queue.size() == 0)) { processNextElement() } } } private void processNextElement() { Object next = queue.elementAt(0) queue.removeElementAt(0) System.out.println(next)-public class Server extends Thread { Client client int counter public Server(Client _client) { this.client = _client this.counter = 0 } public void run() { while (counter lt; 10) { this.client.queue.addElement(new Integer(counter)) counter++ } throw new RuntimeException("counter gt;= 10") } p
- 2022-02-21 05:44:37下载
- 积分:1