vb6.0制作。可以设定某程序到某一时间运行。但暂时只能添加单一程序。就是指运行时不能设定多个任务。但可以运行多个本程序。ps:后来又添加了一个回车触发添加的函数。但没有必要再上传了。把那个函数代码写在下面,只要放到代码段就Ok。Private Sub MaskEdBox1_KeyDown(KeyCode As Integer, Shift As Integer) ' 添加了一个回车触发事件 If KeyCode = 13 Then Call Command2_Click End If End Sub
2021-12-06 03:06:41 17KB vb 定时运行 程序 源代码
1
DSP图像采集程序源代码,希望对你有帮助啊!
2021-12-04 20:54:22 331KB DSP图像处理
1
扫雷程序Java原代码(swt)和一些swt入门代码示例 在elipse中运行main class: cn.pandaoen.game.minesweeper.MineSweeper java vm argument: -Djava.library.path=%workspace%\SWT\lib
2021-12-04 11:12:24 4.02MB Java minesweeper swt 原代码
1
来电显示电话机程序源代码,IC是使用EMC 8BIT EM78911来完成来电显示CID功能。可以用edit编辑器可以打开。是电话机的很好的参考。
2021-12-03 14:44:59 114KB 来电显示 电话机 程序源代码
1
该文件包括的是基于RA8806芯片的液晶程序源代码。可以实现图像,文字的显示。
2021-12-02 14:32:25 80KB 320240 、ra8806
1
该程序源代码用于STC89C52RC单片机智能小车测速、按键调速、红外避障综合实验。 1、源代码开发软件:keil; 2、程序对应处理器是:STC89C52RC(51单片机); 3、智能小车电机驱动芯片是:L293D; 4、智能小车电机为:TT直流减速电机; 5、需要用到测速模块; 6、红外避障(避开障碍物)。 该程序源代码在本人STC89C52RC单片机智能小车上亲测可用。
2021-12-02 13:03:25 38KB 智能小车 51单片机 STC89C52RC 测速
该程序源代码用于STC89C52RC单片机智能小车红外遥控和测速综合实验。 1、源代码开发软件:keil; 2、程序对应处理器是:STC89C52RC(51单片机); 3、智能小车电机驱动芯片是:L293D; 4、智能小车电机为:TT直流减速电机; 5、需要用到红外遥控器; 6、需要用到测速模块。 该程序源代码在本人STC89C52RC单片机智能小车上亲测可用。
2021-12-02 13:03:24 1.82MB 智能小车 51单片机 STC89C52RC 红外遥控
计算机网络高级软件编程技术第4章 计算校验和程序源代码
1
CSDN原文:https://blog.csdn.net/qq_42183184/article/details/82287632#comments
2021-12-01 14:57:20 1.63MB 微信小程序 菜单 菜谱
1
160个项目开发实例,聊天项目,小游戏适和新手学习(项目采用GBK编码)。 import java.util.*; import java.io.*; import java.awt.*; import java.awt.event.*; import java.applet.*; import javax.swing.*; class Gobang extends JFrame implements Runnable, ActionListener { final static int Player=1; final static int AI =-1; ClassLoader cl = this.getClass().getClassLoader(); Toolkit tk = Toolkit.getDefaultToolkit(); int length=14, game_state, winner, check, step; int grid[][] = new int[length][length]; int locX, locY /* 囱竚 */, count /* 硈囱计 */, x, y /* 既竚 */, displace_x=0, displace_y=0 /* 簿秖 */, direction; ArrayList steps = new ArrayList(); /* 癘魁囱˙ */ JPopupMenu control_menu = new JPopupMenu(); /* 龄匡虫 */ JMenuItem[] command = new JMenuItem[4]; String[] command_str={"囱", "郎", "弄郎", "秨"}; int[][] dir = { {-1, -1}, {-1, 0}, {-1, 1}, {0, -1}, {0, 1}, {1, -1}, {1, 0}, {1, 1} }; boolean[] dir2 = new boolean[8]; boolean turn; String message; final JDialog dialog = new JDialog(this, "叫匡", true); Font font=new Font("new_font", Font.BOLD, 20); Grid grids[][] = new Grid[length][length]; Image white= tk.getImage(cl.getResource("res/white.png")); Image black= tk.getImage(cl.getResource("res/black.png")); Image title= tk.getImage(cl.getResource("res/title.png")); Image temp; JPanel boardPanel, bigpanel; JRadioButton[] choice = new JRadioButton[2]; final static int Start =0; final static int Select =1; final static int Playing =2; final static int End =3; final static int nil=-1; /* 礚よ */ final static int oblique_1 =0; /* オ */ final static int oblique_2 =1; /* オ */ final static int horizontal =2; /* 绢 */ final static int vertical=3; /*  */ Gobang() { super("き囱"); boardPanel = new JPanel(); boardPanel.setLayout(new GridLayout(length, length, 0, 0)); boardPanel.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT); for(int i=0; i
2021-12-01 08:39:16 602KB 包含五子棋等
1