-
vbplayer33
VB6.0 MP3音乐播放器,利用电脑自带的wmp制作的,整合网上的资源,能本地播放,能网上搜歌,暂不支持利用歌手名字搜歌。编辑注:虽然核心是基于MediaPlayer,这点好像有很多例子,但本程序在一些辅助功能方面、窗体界面设计方面做的都挺不错,欢迎参考(VB6.0 MP3 music player, making use of the computer comes with wmp, integrating online resources, to local playback, the song can be found online, does not support the use of the singer name search song. Editor' s note: While the core is based on the MediaPlayer, this point seems to have a lot of examples, but the program in some auxiliary functions, form interface design came to do good, welcome reference)
- 2014-05-15 12:03:21下载
- 积分:1
-
为了实现WINDOWS与LINUX的串口通讯,利用Csocket实现的一个小型数据交换软件,对学习Csocket类编程很有启发作用。...
为了实现WINDOWS与LINUX的串口通讯,利用Csocket实现的一个小型数据交换软件,对学习Csocket类编程很有启发作用。-in order to achieve the Windows and LINUX serial communications, Csocket achieved using a small data exchange software. Csocket type of learning program is very enlightening role.
- 2023-01-01 09:40:03下载
- 积分:1
-
一个ftp服务器的例子,推荐下载
一个ftp服务器的例子,推荐下载 --An example of ftp server,recommend
- 2022-08-15 06:57:13下载
- 积分:1
-
139175
CSMA SD载波帧冲突检测模拟仿真,采用的是C#()
- 2018-07-09 16:04:18下载
- 积分:1
-
247761
这个电子书主要是介绍IP电话管理计费软件设计,()
- 2018-03-29 08:53:42下载
- 积分:1
-
经典网络编程书籍:Windows网络编程第二版
经典网络编程书籍:Windows网络编程第二版 -Classic network programming books: Windows Network Programming Second Edition
- 2022-07-24 09:23:47下载
- 积分:1
-
sequence
我用VC++实现程序的顺序执行,即前驱关系
从P1-->P2前驱图的顺序执行的实现(sequence)
- 2021-01-12 21:58:48下载
- 积分:1
-
FluentAdo
说明: halcon联合labview调用相机实时采集输出图像,labview与halcon17都是32位操作系统(Halcon United LabVIEW calls the camera to collect and output images in real time. Both LabVIEW and Halcon 17 are 32-bit operating systems.)
- 2020-06-25 20:00:02下载
- 积分:1
-
超级网站自助系统,它是一个全新的网站建站系统,可以通过模板建立漂亮的网站,实现了企业自动建站。...
超级网站自助系统,它是一个全新的网站建站系统,可以通过模板建立漂亮的网站,实现了企业自动建站。-super self-service website, it is a new system the establishment of the station"s website, through the establishment of good template websites of enterprises automatic establishment of the station.
- 2022-12-03 16:20:04下载
- 积分:1
-
C#自动更新服务(本地服务安装)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using Common.WinService;using Common.Log;using System.Threading;using Common.Net;using System.Text.RegularExpressions;namespace Collection.AutoRunner{ //获取学生信息 public class Service_Update_Data : IWindowsService { private ILogWriter _logWriter = null; private const string logCategory = "Services.Info"; private string logInfoSource = "Update_Data"; private const string logErrorCategory = "Services.Error"; private const string logErrorSource = "Update_Data_Error"; private bool BeStop = true; private System.Timers.Timer timer = null; public void Start(Common.Log.ILogWriter logWriter, string gameCode) { gameCode = gameCode.ToUpper(); logInfoSource = gameCode; _logWriter = logWriter; BeStop = false; StartRequestData(); } int stata = 0; private void StartRequestData() { try { #region 配置 //时间频率 var UpdateStudentSpan = ServiceHelper.GetInterval("UpdateData"); //更新学生开始时间 var studentbegintime = ServiceHelper.GetInterval("StudentBeginTime"); //更新学生结束时间 var studentendtime = ServiceHelper.GetInterval("StudentEndTime"); //是否更新学生基本信息:true为更新 false为不更新 var IsUpdateStudnet =Convert.ToBoolean(ServiceHelper.GetSystemConfig("IsUpdateStudnet")); #endregion timer = ServiceHelper.ExcuteByTimer(UpdateStudentSpan, () => { int timeHour = DateTime.Now.Hour; if (timeHour == 3) stata = 0; #region 更新学生基本信息 if (studentbegintime
- 2015-03-11下载
- 积分:1